Skip to content

Commit

Permalink
Use app.exit() instead of app.quit() in makeSingleInstance
Browse files Browse the repository at this point in the history
  • Loading branch information
yuya-oc committed Nov 1, 2017
1 parent 0e1e422 commit 19ced85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ if (app.makeSingleInstance((commandLine/*, workingDirectory*/) => {
}
}
})) {
app.quit();
app.exit();
}

function shouldShowTrayIcon() {
Expand Down

0 comments on commit 19ced85

Please sign in to comment.