3
0
mirror of https://github.com/ergochat/ergo.git synced 2025-04-03 22:38:16 +02:00

fix CHATHISTORY TARGETS from MySQL backend using server local TZ (#2224)

time.Unix() returns a time.Time with the Location populated to the server's
timezone. Such times will format incorrectly with IRCv3TimestampFormat unless
they are manually converted to UTC.
This commit is contained in:
Shivaram Lingamneni 2025-03-17 02:22:25 -04:00 committed by GitHub
parent aed216a62e
commit 4bcd008416
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -961,7 +961,7 @@ func (mysql *MySQL) listCorrespondentsInternal(ctx context.Context, target strin
}
results = append(results, history.TargetListing{
CfName: correspondent,
Time: time.Unix(0, nanotime),
Time: time.Unix(0, nanotime).UTC(),
})
}
@ -1014,7 +1014,7 @@ func (mysql *MySQL) ListChannels(cfchannels []string) (results []history.TargetL
}
results = append(results, history.TargetListing{
CfName: target,
Time: time.Unix(0, nanotime),
Time: time.Unix(0, nanotime).UTC(),
})
}
return