diff --git a/CHANGELOG.md b/CHANGELOG.md index 28b396a4..575fc93a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Prevent `getModules()` selectors from returning duplicate entries. - Append endpoints of weather modules with `/` to retreive the correct data. (Issue [#337](https://github.com/MichMich/MagicMirror/issues/337)) - Corrected grammer in `module.js` from 'suspend' to 'suspended'. +- Fixed openweathermap.org URL in config sample. ### Added - Added ability to turn off the date display in `clock.js` when in analog mode. diff --git a/config/config.js.sample b/config/config.js.sample index aedc2b75..04c7fba9 100644 --- a/config/config.js.sample +++ b/config/config.js.sample @@ -41,7 +41,7 @@ var config = { position: 'top_right', config: { location: 'New York', - locationID: '', //ID from bulk.openweather.org/sample/ + locationID: '', //ID from http://www.openweathermap.org appid: 'YOUR_OPENWEATHER_API_KEY' } }, @@ -51,7 +51,7 @@ var config = { header: 'Weather Forecast', config: { location: 'New York', - locationID: '5128581', //ID from bulk.openweather.org/sample/ + locationID: '5128581', //ID from http://www.openweathermap.org appid: 'YOUR_OPENWEATHER_API_KEY' } },