From 04cf5a98cd57e40e8aa6381a7b2d1f6b082ecc33 Mon Sep 17 00:00:00 2001 From: haritabh-z01 Date: Sat, 13 Dec 2025 02:33:47 +0530 Subject: [PATCH] chore: make updates silent --- apps/desktop/src/main/main.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/desktop/src/main/main.ts b/apps/desktop/src/main/main.ts index f5aefff..677f068 100644 --- a/apps/desktop/src/main/main.ts +++ b/apps/desktop/src/main/main.ts @@ -38,7 +38,9 @@ if (!gotTheLock) { // Set up auto-updater for production builds if (app.isPackaged && !isWindows()) { - updateElectronApp(); + updateElectronApp({ + notifyUser: false, + }); } if (app.isPackaged && isWindows()) { // Check if running with --squirrel-firstrun (Windows only) @@ -46,7 +48,9 @@ if (app.isPackaged && isWindows()) { // Delay update check on Windows to avoid Squirrel file lock issues if (isWindows() && !isSquirrelFirstRun) { setTimeout(() => { - updateElectronApp(); + updateElectronApp({ + notifyUser: false, + }); }, 60000); // 60 second delay } }