diff --git a/plugins/weather.lua b/plugins/weather.lua index f6abe28..e4e77ea 100644 --- a/plugins/weather.lua +++ b/plugins/weather.lua @@ -20,7 +20,7 @@ local function get_weather(location) else country = ' ('..weather.sys.country..')' end - local temperature = string.gsub(round(weather.main.temp, 1), "%.", "%,") + local temperature = round(weather.main.temp, 1) local temp = 'Wetter in '..city..country..':\n'..temperature..'°C' local conditions = ' | '..weather.weather[1].description if weather.weather[1].main == 'Clear' then