From e5f83ec639f998d7c04d12d07c53edc1edb12047 Mon Sep 17 00:00:00 2001 From: lanxu Date: Sun, 3 Aug 2025 21:22:33 +0300 Subject: [PATCH] =?UTF-8?q?Remove=20duplicate=20"S=C3=A4=C3=A4"=20strings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/weather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/weather.js b/plugins/weather.js index faacb39..7bac10e 100644 --- a/plugins/weather.js +++ b/plugins/weather.js @@ -177,7 +177,7 @@ class Weather extends BasePlugin { var windspeed = result.wind.speed - let str = 'Sää: ' + city + ', ' + country + ' (' + temp + ' °C, ' + that.iconCodeToText[code] + ', ilmankosteus: ' + humidity + ' %, ilmanpaine: ' + pressure + ' hPa, tuulen nopeus: ' + windspeed + ' m/s)' + let str = city + ', ' + country + ' (' + temp + ' °C, ' + that.iconCodeToText[code] + ', ilmankosteus: ' + humidity + ' %, ilmanpaine: ' + pressure + ' hPa, tuulen nopeus: ' + windspeed + ' m/s)' resolve('Sää: ' + str) } }, function (error) {