Parse uptime with timezone info

This commit is contained in:
imlonghao 2020-09-13 18:41:42 +08:00
parent 6d16be67a8
commit f2ac48979e
No known key found for this signature in database
GPG Key ID: 15B26377262268C1

View File

@ -158,7 +158,7 @@ func parseUptime(value string) int {
}
func parseUptimeForIso(s string) int {
start, err := time.Parse("2006-01-02 15:04:05", s)
start, err := time.ParseInLocation("2006-01-02 15:04:05", s, time.Local)
if err != nil {
log.Errorln(err)
return 0