mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-08-21 04:45:17 +00:00
Use HTTPS instead of HTTP
Chrome blocks insecure requests (HTTP) when MagicMirror is loaded via HTTPS. This commit changes the protocol used for OpenWeatherMap.
This commit is contained in:
@@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed issue with calendar module showing more than `maximumEntries` allows
|
- Fixed issue with calendar module showing more than `maximumEntries` allows
|
||||||
|
- WeatherForecast and CurrentWeather are now using HTTPS instead of HTTP
|
||||||
|
|
||||||
## [2.1.3] - 2017-10-01
|
## [2.1.3] - 2017-10-01
|
||||||
|
|
||||||
|
@@ -33,7 +33,7 @@ Module.register("currentweather",{
|
|||||||
retryDelay: 2500,
|
retryDelay: 2500,
|
||||||
|
|
||||||
apiVersion: "2.5",
|
apiVersion: "2.5",
|
||||||
apiBase: "http://api.openweathermap.org/data/",
|
apiBase: "https://api.openweathermap.org/data/",
|
||||||
weatherEndpoint: "weather",
|
weatherEndpoint: "weather",
|
||||||
|
|
||||||
appendLocationNameToHeader: true,
|
appendLocationNameToHeader: true,
|
||||||
|
@@ -30,7 +30,7 @@ Module.register("weatherforecast",{
|
|||||||
retryDelay: 2500,
|
retryDelay: 2500,
|
||||||
|
|
||||||
apiVersion: "2.5",
|
apiVersion: "2.5",
|
||||||
apiBase: "http://api.openweathermap.org/data/",
|
apiBase: "https://api.openweathermap.org/data/",
|
||||||
forecastEndpoint: "forecast/daily",
|
forecastEndpoint: "forecast/daily",
|
||||||
|
|
||||||
appendLocationNameToHeader: true,
|
appendLocationNameToHeader: true,
|
||||||
|
Reference in New Issue
Block a user