From 56e3be26daf39b860f16220a3a46f56849e8b2a5 Mon Sep 17 00:00:00 2001 From: Zane <75694352+zanesq@users.noreply.github.com> Date: Mon, 17 Nov 2025 11:16:24 -0800 Subject: [PATCH] Don't show update tray icon if GOOSE_VERSION is set (#5750) --- ui/desktop/src/utils/autoUpdater.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ui/desktop/src/utils/autoUpdater.ts b/ui/desktop/src/utils/autoUpdater.ts index 9495c9d1..ee7e55d0 100644 --- a/ui/desktop/src/utils/autoUpdater.ts +++ b/ui/desktop/src/utils/autoUpdater.ts @@ -469,6 +469,10 @@ function sendStatusToWindow(event: string, data?: unknown) { function updateTrayIcon(hasUpdate: boolean) { if (!trayRef) return; + if (process.env.GOOSE_VERSION) { + hasUpdate = false; + } + const isDev = !app.isPackaged; let iconPath: string;