diff --git a/src/main/events/autoupdater/restart-and-install-update.ts b/src/main/events/autoupdater/restart-and-install-update.ts index 2dbef98f..afaade1a 100644 --- a/src/main/events/autoupdater/restart-and-install-update.ts +++ b/src/main/events/autoupdater/restart-and-install-update.ts @@ -7,7 +7,7 @@ const { autoUpdater } = updater; const restartAndInstallUpdate = async (_event: Electron.IpcMainInvokeEvent) => { autoUpdater.removeAllListeners(); if (app.isPackaged) { - autoUpdater.quitAndInstall(true, true); + autoUpdater.quitAndInstall(false); } };