handle Pacific Daylight Time in addition to Pacific Standard Time

pull/807/head
Dave Marquard il y a 4 ans commité par Frédéric Guillot
Parent 38d3b28445
révision eb026ae4ac
  1. 2
      reader/date/parser.go

@ -243,7 +243,7 @@ func parseLocalTimeDates(layout, ds string) (t time.Time, err error) {
loc := time.UTC
// Workaround for dates that don't use GMT.
if strings.HasSuffix(ds, "PST") {
if strings.HasSuffix(ds, "PST") || strings.HasSuffix(ds, "PDT") {
loc, _ = time.LoadLocation("America/Los_Angeles")
}

Chargement…
Annuler
Enregistrer