Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Commit

Permalink
Merge pull request #55 from DeFiCh/develop
Browse files Browse the repository at this point in the history
Fixed: defi-app v1.0.2
  • Loading branch information
fullstackninja864 authored Sep 4, 2020
2 parents 5798c03 + 54afb83 commit d02a1ae
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions electron-app/src/ipc-events/electronupdatemanager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,8 @@ export default function initiateElectronUpdateManager(autoUpdater: any) {
};
dialog.showMessageBox(options).then((result) => {
if (result.response === 0) {
setImmediate(() => {
autoUpdater.quitAndInstall();
})
autoUpdater.quitAndInstall();
app.exit();
}
});
});
Expand Down

0 comments on commit d02a1ae

Please sign in to comment.