Merge pull request #39 from imlonghao/fix/timezone

Parse uptime with timezone info
This commit is contained in:
Daniel Czerwonk 2020-10-08 17:58:34 +02:00 committed by GitHub
commit 019fc09804
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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