Skip to content

Commit e4abf03

Browse files
committed
fix: set compliments remote file minimum delay to 15 minutes
1 parent 854c954 commit e4abf03

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ planned for 2026-01-01
4949
- [newsfeed] fixed header layout issue introduced with prettier njk linting (#3946)
5050
- [weather] fixed windy icon not showing up in pirateweather (#3957)
5151
- [compliments] fixed duplicate query param "?" when constructing refresh url (#3967)
52+
- [compliments] fixed compliments remote file minimum delay to be 15 minutes (#3969)
5253

5354
### Updated
5455

modules/default/compliments/compliments.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Module.register("compliments", {
2323
},
2424
urlSuffix: "",
2525
compliments_new: null,
26-
refreshMinimumDelay: 15 * 60 * 60 * 1000, // 15 minutes
26+
refreshMinimumDelay: 15 * 60 * 1000, // 15 minutes
2727
lastIndexUsed: -1,
2828
// Set currentweather from module
2929
currentWeatherType: "",

0 commit comments

Comments
 (0)