Don't show update tray icon if GOOSE_VERSION is set (#5750)

This commit is contained in:
Zane
2025-11-17 11:16:24 -08:00
committed by GitHub
parent a885f5c3b9
commit 56e3be26da
+4
View File
@@ -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;