fix(desktop): disable auto install on app quit (#25976)

This commit is contained in:
Brendan Allan 2026-05-06 14:39:20 +08:00 committed by GitHub
parent 9d178e0944
commit acca2e92dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -378,7 +378,7 @@ function setupAutoUpdater() {
autoUpdater.allowPrerelease = false
autoUpdater.allowDowngrade = true
autoUpdater.autoDownload = false
autoUpdater.autoInstallOnAppQuit = true
autoUpdater.autoInstallOnAppQuit = false
logger.log("auto updater configured", {
channel: autoUpdater.channel,
allowPrerelease: autoUpdater.allowPrerelease,