#198 fix attempt 3: patch on DST check

This commit is contained in:
copycat-killer 2016-06-02 11:19:17 +02:00
parent 2d8e93f189
commit 7bc886679d
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ local function worker(args)
local utc_offset = args.utc_offset or
function ()
local now = os.time()
return os.difftime(now, os.time(os.date("!*t", now))) + (os.date("*t").isdst and 3600)
return os.difftime(now, os.time(os.date("!*t", now))) + ((os.date("*t").isdst and 1 or 0) * 3600)
end
local units = args.units or "metric"
local lang = args.lang or "en"