handle Pacific Daylight Time in addition to Pacific Standard Time
This commit is contained in:
parent
38d3b28445
commit
eb026ae4ac
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ func parseLocalTimeDates(layout, ds string) (t time.Time, err error) {
|
||||||
loc := time.UTC
|
loc := time.UTC
|
||||||
|
|
||||||
// Workaround for dates that don't use GMT.
|
// 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")
|
loc, _ = time.LoadLocation("America/Los_Angeles")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue