make forecast timer naming consistent

This commit is contained in:
Dario Gjorgjevski 2015-08-29 15:16:53 +02:00
parent ca6119899a
commit 10e71d2e46
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ local function worker(args)
weather.attach(weather.widget)
newtimer("weather-" .. city_id, timeout, weather.update)
newtimer("weather_forecast" .. city_id, timeout, weather.forecast_update)
newtimer("weather_forecast-" .. city_id, timeout, weather.forecast_update)
return setmetatable(weather, { __index = weather.widget })
end