Skip to content

Commit 8815ec4

Browse files
add link to docs
1 parent 9264950 commit 8815ec4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/ipc/release-channel-handlers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ export class ReleaseChannelIPCHandlers {
6868
if (result.response === 0) {
6969
// Force immediate quit and install
7070
setImmediate(() => {
71-
const isForceRunAfter = true;
72-
autoUpdater.quitAndInstall(isForceRunAfter);
71+
// isSilent: false, isForceRunAfter: true, check docs: https://www.jsdocs.io/package/electron-updater#AppUpdater.quitAndInstall
72+
autoUpdater.quitAndInstall(false, true);
7373
});
7474
}
7575
})

0 commit comments

Comments
 (0)