Skip to content

Commit 72fcaef

Browse files
committed
Set autoInstallOnAppQuit to false
1 parent edbceda commit 72fcaef

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/electron/ipc-api/autoUpdate.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export default (params) => {
77
if (process.platform === 'darwin' || process.platform === 'win32') {
88
ipcMain.on('autoUpdate', (event, args) => {
99
try {
10+
autoUpdater.autoInstallOnAppQuit = false;
1011
autoUpdater.allowPrerelease = Boolean(params.settings.app.get('beta'));
1112
if (args.action === 'check') {
1213
autoUpdater.checkForUpdates();

0 commit comments

Comments
 (0)