diff --git a/modules/default/currentweather/currentweather.js b/modules/default/currentweather/currentweather.js index 09f582bf..18ae3c71 100644 --- a/modules/default/currentweather/currentweather.js +++ b/modules/default/currentweather/currentweather.js @@ -417,7 +417,7 @@ Module.register("currentweather",{ case "imperial": this.feelsLike = windChillInF.toFixed(0); break; case "default": - var tc = windChillInC - 273.15; + var tc = windChillInC + 273.15; this.feelsLike = tc.toFixed(0); break; }