diff --git a/modules/default/weather/current.html b/modules/default/weather/current.html
index 416926b2..1e618306 100644
--- a/modules/default/weather/current.html
+++ b/modules/default/weather/current.html
@@ -10,7 +10,7 @@
- {{current.temperature | round(1)}}°
+ {{current.temperature | round(0 if config.roundTemp else 1)}}°
{% endif %}
diff --git a/modules/default/weather/weather.js b/modules/default/weather/weather.js
index 6a0eec54..f2993605 100644
--- a/modules/default/weather/weather.js
+++ b/modules/default/weather/weather.js
@@ -93,8 +93,7 @@ Module.register("weather",{
return {
config: this.config,
current: this.weatherProvider.currentWeather(),
- forecast: this.weatherProvider.weatherForecast(),
- myBoolean: true
+ forecast: this.weatherProvider.weatherForecast()
}
},