From e4abf036931742f9dc3a52980585d2556492972b Mon Sep 17 00:00:00 2001 From: Samed Ozdemir Date: Wed, 19 Nov 2025 19:53:42 -0500 Subject: [PATCH 1/2] fix: set compliments remote file minimum delay to 15 minutes --- CHANGELOG.md | 1 + modules/default/compliments/compliments.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b7f191e69..f38e4f383b 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 (#3969) ### Updated diff --git a/modules/default/compliments/compliments.js b/modules/default/compliments/compliments.js index 5e2891093c..ee0d2b98fa 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: "", From 29d27d67bccfbf87c82402c42f85621fff46ecec Mon Sep 17 00:00:00 2001 From: Samed Ozdemir Date: Wed, 19 Nov 2025 20:26:41 -0500 Subject: [PATCH 2/2] Fix compliments remote file minimum delay entry --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f38e4f383b..ae5e360231 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -49,7 +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 (#3969) +- [compliments] fixed compliments remote file minimum delay to be 15 minutes (#3970) ### Updated