Open allysprik opened 1 year ago
0 degrees celsius results in NaN, when I switch to Fahrenheit it does say 32 properly.
This is caused by main.js lines 109, 114, 121 and 126. jsonElement ? x : y needs to be replaced with jsonElement != undefined ? x : y.
jsonElement ? x : y
jsonElement != undefined ? x : y
0 degrees celsius results in NaN, when I switch to Fahrenheit it does say 32 properly.