mirror of
https://github.com/MichMich/MagicMirror.git
synced 2025-12-01 10:31:45 +00:00
fix: set compliments remote file minimum delay to 15 minutes (#3970)
fix: set compliments remote file minimum delay to 15 minutes..extra *60 in there was making it 15 hours.
This commit is contained in:
@@ -49,6 +49,7 @@ planned for 2026-01-01
|
|||||||
- [newsfeed] fixed header layout issue introduced with prettier njk linting (#3946)
|
- [newsfeed] fixed header layout issue introduced with prettier njk linting (#3946)
|
||||||
- [weather] fixed windy icon not showing up in pirateweather (#3957)
|
- [weather] fixed windy icon not showing up in pirateweather (#3957)
|
||||||
- [compliments] fixed duplicate query param "?" when constructing refresh url (#3967)
|
- [compliments] fixed duplicate query param "?" when constructing refresh url (#3967)
|
||||||
|
- [compliments] fixed compliments remote file minimum delay to be 15 minutes (#3970)
|
||||||
|
|
||||||
### Updated
|
### Updated
|
||||||
|
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ Module.register("compliments", {
|
|||||||
},
|
},
|
||||||
urlSuffix: "",
|
urlSuffix: "",
|
||||||
compliments_new: null,
|
compliments_new: null,
|
||||||
refreshMinimumDelay: 15 * 60 * 60 * 1000, // 15 minutes
|
refreshMinimumDelay: 15 * 60 * 1000, // 15 minutes
|
||||||
lastIndexUsed: -1,
|
lastIndexUsed: -1,
|
||||||
// Set currentweather from module
|
// Set currentweather from module
|
||||||
currentWeatherType: "",
|
currentWeatherType: "",
|
||||||
|
|||||||
Reference in New Issue
Block a user