Parse as a UTC time

pull/2216/head
Phil Constantinou 2025-01-05 19:19:17 -08:00
parent cdc672cf3f
commit 42d3d00734
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ func (ts *Timestamp) UnmarshalJSON(b []byte) error {
if err == nil {
*ts = Timestamp{Time: tim, Valid: true}
}
tim, err = time.Parse(jsonISO8601, tss)
tim, err = time.ParseInLocation(jsonISO8601, tss, time.UTC)
if err == nil {
*ts = Timestamp{Time: tim, Valid: true}
}