Merge pull request #1918 from sergge1/develop

to make logic of parameter name to its actual behavior
This commit is contained in:
Michael Teeuw 2020-02-06 10:09:22 +01:00 committed by GitHub
commit e5cdcd190c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -217,7 +217,7 @@ Module.register("currentweather",{
this.config.decimalSymbol = ".";
}
if (this.config.hideTemp === true) {
if (this.config.hideTemp === false) {
var weatherIcon = document.createElement("span");
weatherIcon.className = "wi weathericon " + this.weatherType;
large.appendChild(weatherIcon);