diff options
author | Aurélien LAJOIE <orel@melix.net> | 2019-02-20 14:24:36 +0100 |
---|---|---|
committer | Aurélien LAJOIE <orel@melix.net> | 2019-02-20 14:36:41 +0100 |
commit | f19362afdfc248f96c3513b7be1d6b22bcae75e3 (patch) | |
tree | d98a442af14923d8a75da4deb9ab2ef539f2c05d /weather-widget | |
parent | 29a9761c4d0f851b75863c59854a17ea5a6d8e43 (diff) |
[weather] Check if the response is not null before decoding it.
With network glitch you can have sometimes empty answer, this was
triggering an exception.
Diffstat (limited to 'weather-widget')
-rw-r--r-- | weather-widget/weather.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weather-widget/weather.lua b/weather-widget/weather.lua index 484c2c6..d5f07f8 100644 --- a/weather-widget/weather.lua +++ b/weather-widget/weather.lua @@ -97,7 +97,7 @@ weather_timer:connect_signal("timeout", function () .. secrets.weather_widget_city .. '&appid=' .. secrets.weather_widget_api_key .. '&units=' .. secrets.weather_widget_units) - if (status ~= 200) then + if (status ~= 200 and resp_json ~= nil) then local err_resp = json.decode(resp_json) naughty.notify{ title = 'Weather Widget Error', |