Poll for updates every 60 seconds instead of 30 minutes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
roberts 2026-03-14 22:04:18 -05:00
parent c773eddea4
commit 91e3fa13c6

View file

@ -554,8 +554,8 @@
// Refresh services panel periodically
setInterval(loadPanelServices, 30000);
// Check for updates every 30 minutes
setInterval(checkForUpdates, 30 * 60 * 1000);
// Check for updates every 60 seconds
setInterval(checkForUpdates, 60 * 1000);
// Expose for app modules
window.Atlus.openApp = openApp;