From 701352911743921833d901bd6fa2728be148cceb Mon Sep 17 00:00:00 2001 From: Aleksandr Beliaev Date: Thu, 2 Jun 2016 19:44:19 +1200 Subject: [PATCH] Fix boolean with number comparison --- widgets/weather.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/weather.lua b/widgets/weather.lua index b074cff..d2ed300 100644 --- a/widgets/weather.lua +++ b/widgets/weather.lua @@ -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" -- 2.39.2