Skip to content

Commit

Permalink
Merge pull request #2035 from Ekristoffe/develop
Browse files Browse the repository at this point in the history
Fix for #2018
  • Loading branch information
MichMich authored Jun 2, 2020
2 parents 5f2c465 + cc01c1f commit aac6757
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ _This release is scheduled to be released on 2020-07-01._

- The broken modules due to Socket.io change from last release [#1973](https://github.com/MichMich/MagicMirror/issues/1973)
- Add backward compatibility for old module code in socketclient.js [#1973](https://github.com/MichMich/MagicMirror/issues/1973)
- Fix the use of "maxNumberOfDays" in the module "weatherforecast" [#2018](https://github.com/MichMich/MagicMirror/issues/2018)

## [2.11.0] - 2020-04-01

Expand Down
2 changes: 2 additions & 0 deletions modules/default/weatherforecast/weatherforecast.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,8 @@ Module.register("weatherforecast", {
return;
}

params += "&cnt=" + (this.config.maxNumberOfDays < 1 || this.config.maxNumberOfDays > 17 ? 7 : this.config.maxNumberOfDays);

params += "&units=" + this.config.units;
params += "&lang=" + this.config.lang;
params += "&APPID=" + this.config.appid;
Expand Down

0 comments on commit aac6757

Please sign in to comment.