Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix launch protocol error on windows and linux
Browse files Browse the repository at this point in the history
.. as suggested here:
electron/electron#8862 (comment)
  • Loading branch information
slaweet committed Nov 27, 2017
1 parent 6a57baf commit 2d138da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const isSecondInstance = app.makeSingleInstance((argv) => {
});

if (isSecondInstance) {
app.quit();
app.exit();
}

app.on('will-finish-launching', () => {
Expand Down

0 comments on commit 2d138da

Please sign in to comment.