diff --git a/src/main/index.ts b/src/main/index.ts index e4958acb..09e1ff56 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -93,6 +93,8 @@ app.whenReady().then(() => { installExtension(REDUX_DEVTOOLS) .then((name) => console.log(`Added Extension: ${name}`)) .catch((err) => console.log('An error occurred: ', err)) + + autoUpdater.checkForUpdatesAndNotify() }) // Quit when all windows are closed, except on macOS. There, it's common @@ -104,7 +106,5 @@ app.on('window-all-closed', () => { } }) -autoUpdater.checkForUpdatesAndNotify() - // In this file you can include the rest of your app"s specific main process // code. You can also put them in separate files and require them here.