yawn: bad connectivity fix

This commit is contained in:
luke bonham 2013-10-01 13:47:37 +02:00
parent c752bc0c50
commit 62d5cba130
1 changed files with 2 additions and 2 deletions

View File

@ -71,10 +71,10 @@ local function fetch_weather()
-- Processing raw data
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
if weather_data == nil then
if weather_data == "" then
yawn.icon:set_image(icon_path .. "na.png")
yawn.widget:set_text("?")
return