From 81607e810e5454eba65d43d66061c6d1658e70e8 Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Fri, 25 Mar 2022 10:13:50 +0100 Subject: [PATCH] Force updates to be silent (#739) --- electron/src/updater.main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/src/updater.main.ts b/electron/src/updater.main.ts index c610549408..881208f8d3 100644 --- a/electron/src/updater.main.ts +++ b/electron/src/updater.main.ts @@ -109,7 +109,7 @@ export class UpdaterMain { if (result.response === 0) { // Quit and install have a different window logic, setting `isQuitting` just to be safe. this.windowMain.isQuitting = true; - autoUpdater.quitAndInstall(false, true); + autoUpdater.quitAndInstall(true, true); } });