Change processed date format to 'Jan 02, 2006 3:04 PM EST'

This commit is contained in:
James 2026-02-10 04:09:35 -05:00
parent a52ab6e20d
commit 6adfefff7a
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ func formatDateTime(s string) string {
for _, f := range formats {
if t, err := time.Parse(f, s); err == nil {
t = t.In(loc)
return t.Format("01/02/2006 3:04 PM EST")
return t.Format("Jan 02, 2006 3:04 PM MST")
}
}
return s