From 34e5f294192e2bbcf439ae2f22b0dae7c51cca5e Mon Sep 17 00:00:00 2001 From: Shameer Ashraf Date: Fri, 29 Jun 2018 01:00:20 -0400 Subject: [PATCH] Fixed Wind Chill in Kelvin --- modules/default/currentweather/currentweather.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }