mirror of https://github.com/lcpz/lain.git
yawn: bad connectivity fix
This commit is contained in:
parent
c752bc0c50
commit
62d5cba130
|
@ -71,10 +71,10 @@ local function fetch_weather()
|
||||||
|
|
||||||
-- Processing raw data
|
-- Processing raw data
|
||||||
weather_data = text:gsub("<.->", "")
|
weather_data = text:gsub("<.->", "")
|
||||||
weather_data = weather_data:match("Current Conditions:.-Full")
|
weather_data = weather_data:match("Current Conditions:.-Full") or ""
|
||||||
|
|
||||||
-- may still happens in case of bad connectivity
|
-- may still happens in case of bad connectivity
|
||||||
if weather_data == nil then
|
if weather_data == "" then
|
||||||
yawn.icon:set_image(icon_path .. "na.png")
|
yawn.icon:set_image(icon_path .. "na.png")
|
||||||
yawn.widget:set_text("?")
|
yawn.widget:set_text("?")
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue