replace ° by '

pull/3461/head
Lars Werner 2024-06-19 14:41:48 +02:00 committed by GitHub
parent cabc4cf057
commit dce1fcdae7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -678,7 +678,7 @@ let getWeather = function(){
let weather = weatherJson.weather;
// Temperature
weather.temp = locale.temp(weather.temp-273.15).replace('°', ' ');
weather.temp = locale.temp(weather.temp-273.15).replace('°', '\'');
// Humidity
weather.hum = weather.hum + "%";