From 74b682fdf1e05dadff2c62fb4a685d0f5ec6c282 Mon Sep 17 00:00:00 2001 From: Samed Ozdemir Date: Fri, 21 Nov 2025 07:27:37 -0500 Subject: [PATCH] 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. --- 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 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: "",