diff --git a/internal/reader/date/parser.go b/internal/reader/date/parser.go index ef35b42a..cb0e64b9 100644 --- a/internal/reader/date/parser.go +++ b/internal/reader/date/parser.go @@ -354,9 +354,7 @@ func parseLocalTimeDates(layout, ds string) (t time.Time, err error) { // Workaround for dates that don't use GMT. if strings.HasSuffix(ds, "PST") || strings.HasSuffix(ds, "PDT") { loc, _ = time.LoadLocation("America/Los_Angeles") - } - - if strings.HasSuffix(ds, "EST") || strings.HasSuffix(ds, "EDT") { + } else if strings.HasSuffix(ds, "EST") || strings.HasSuffix(ds, "EDT") { loc, _ = time.LoadLocation("America/New_York") }