diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b7f191e..ae5e3602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,6 +49,7 @@ planned for 2026-01-01 - [newsfeed] fixed header layout issue introduced with prettier njk linting (#3946) - [weather] fixed windy icon not showing up in pirateweather (#3957) - [compliments] fixed duplicate query param "?" when constructing refresh url (#3967) +- [compliments] fixed compliments remote file minimum delay to be 15 minutes (#3970) ### Updated diff --git a/modules/default/compliments/compliments.js b/modules/default/compliments/compliments.js index 5e289109..ee0d2b98 100644 --- a/modules/default/compliments/compliments.js +++ b/modules/default/compliments/compliments.js @@ -23,7 +23,7 @@ Module.register("compliments", { }, urlSuffix: "", compliments_new: null, - refreshMinimumDelay: 15 * 60 * 60 * 1000, // 15 minutes + refreshMinimumDelay: 15 * 60 * 1000, // 15 minutes lastIndexUsed: -1, // Set currentweather from module currentWeatherType: "",