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:
@@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user