From 91e3fa13c6b94d0cd4020ef5442ddd53513370cb Mon Sep 17 00:00:00 2001 From: roberts Date: Sat, 14 Mar 2026 22:04:18 -0500 Subject: [PATCH] Poll for updates every 60 seconds instead of 30 minutes Co-Authored-By: Claude Opus 4.6 --- frontend/js/atlus.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/js/atlus.js b/frontend/js/atlus.js index 9873f0f..e505f5c 100644 --- a/frontend/js/atlus.js +++ b/frontend/js/atlus.js @@ -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;