Yeah, metric “Feels” value returns Imperial data.
TO fix this open “currentWeather.js” and change:
switch (this.config.units){
case "metric": this.feelsLike = (Hindex / 2.2).toFixed(0);
break;
You have to divide by 2.2 in order to return approximate metric values.
The value doesn’t have to be perfect because it has a fixed decimal place of zero.
Now in Canada it “Feels 40” degress instead of 80, which is correct!
Thanks @MichMich, I’d do a pull request but I suck at pull requests LOL.
You’re the man!