From 8eccf2d18036bdf7f225674e6c0dfa813c8ce33c Mon Sep 17 00:00:00 2001 From: suku Date: Fri, 5 Jul 2024 09:33:46 +0200 Subject: [PATCH] SUKU timeout reduced for testing --- src/electron/src/updater.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/electron/src/updater.ts b/src/electron/src/updater.ts index c291d27c6..50a7170ec 100644 --- a/src/electron/src/updater.ts +++ b/src/electron/src/updater.ts @@ -54,7 +54,7 @@ function init() { buildVariables.BUILD_ENV === "alpha" || buildVariables.BUILD_ENV === "production" ) { - setTimeout(() => autoUpdater.checkForUpdates(), 10000); //Give time for main window to initialize + setTimeout(() => autoUpdater.checkForUpdates(), 5000); //Give time for main window to initialize } else { console.log("Checking for updates is disabled..."); }