Fix background photo rotation interval from 1 min to 60 min

BACKGROUND interval was set to 60000ms (1 minute) instead of
3600000ms (60 minutes) as intended.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-27 21:39:30 +13:00
parent 4b33ac4bde
commit abf1036864

View File

@@ -3,7 +3,7 @@ const INTERVALS = {
TIME: 1000, // 1 second TIME: 1000, // 1 second
WEATHER: 900000, // 15 minutes WEATHER: 900000, // 15 minutes
CALENDAR: 300000, // 5 minutes CALENDAR: 300000, // 5 minutes
BACKGROUND: 60000, // 1 minute BACKGROUND: 3600000, // 60 minutes
JOKE: 3600000 // 1 hour JOKE: 3600000 // 1 hour
}; };