JaouherK / streamDeck-weatherPlugin

Popular Stream Deck plugin for Weather reporting
https://jaouherk.github.io/streamDeck-weatherPlugin/
GNU General Public License v3.0
44 stars 15 forks source link

Bug report #161

Open allysprik opened 10 months ago

allysprik commented 10 months ago

0 degrees celsius results in NaN, when I switch to Fahrenheit it does say 32 properly.

Minecreator200 commented 10 months ago

This is caused by main.js lines 109, 114, 121 and 126. jsonElement ? x : y needs to be replaced with jsonElement != undefined ? x : y.