Remove duplicate "Sää" strings

This commit is contained in:
lanxu 2025-08-03 21:22:33 +03:00
parent 5495549464
commit e5f83ec639

View File

@ -177,7 +177,7 @@ class Weather extends BasePlugin {
var windspeed = result.wind.speed 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) resolve('Sää: ' + str)
} }
}, function (error) { }, function (error) {