mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-06-27 19:53:36 +00:00
Merge pull request #2477 from PostLogical/openweathermaplatlon
Allowing openweathermap config lat and lon to function without onecall, overrides locationID and location since more specific.
This commit is contained in:
commit
6583f05858
@ -55,6 +55,7 @@ _This release is scheduled to be released on 2021-04-01._
|
|||||||
- Fix socket.io backward compatibility with socket v2 clients
|
- Fix socket.io backward compatibility with socket v2 clients
|
||||||
- 3rd party module language loading if language is English
|
- 3rd party module language loading if language is English
|
||||||
- Fix e2e tests after spectron update
|
- Fix e2e tests after spectron update
|
||||||
|
- Fix weather module openweathermap not loading if lat and lon set without onecall.
|
||||||
|
|
||||||
## [2.14.0] - 2021-01-01
|
## [2.14.0] - 2021-01-01
|
||||||
|
|
||||||
|
@ -465,6 +465,8 @@ WeatherProvider.register("openweathermap", {
|
|||||||
} else {
|
} else {
|
||||||
params += "&exclude=minutely";
|
params += "&exclude=minutely";
|
||||||
}
|
}
|
||||||
|
} else if (this.config.lat && this.config.lon) {
|
||||||
|
params += "lat=" + this.config.lat + "&lon=" + this.config.lon;
|
||||||
} else if (this.config.locationID) {
|
} else if (this.config.locationID) {
|
||||||
params += "id=" + this.config.locationID;
|
params += "id=" + this.config.locationID;
|
||||||
} else if (this.config.location) {
|
} else if (this.config.location) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user