Windows URI handling #121

Merged
alexliebowitz merged 8 commits from windows-linux-uris into master 2017-05-12 22:46:49 +02:00
Showing only changes of commit 980a509260 - Show all commits

View file

@ -193,7 +193,10 @@ function quitNow() {
app.quit(); app.quit();
} }
const isSecondaryInstance = app.makeSingleInstance((argv) => { if (process.platform != 'linux') {
// On Linux, this is always returning true due to an Electron bug,
// so for now we just don't support single-instance apps on Linux.
const isSecondaryInstance = app.makeSingleInstance((argv) => {
if (win) { if (win) {
if (win.isMinimized()) { if (win.isMinimized()) {
win.restore(); win.restore();
@ -206,11 +209,12 @@ const isSecondaryInstance = app.makeSingleInstance((argv) => {
} else if (argv.length >= 2) { } else if (argv.length >= 2) {
openUri = denormalizeUri(argv[1]); openUri = denormalizeUri(argv[1]);
} }
}); });
if (isSecondaryInstance) { // We're not in the original process, so quit if (isSecondaryInstance) { // We're not in the original process, so quit
quitNow(); quitNow();
return; return;
}
} }
app.on('ready', function(){ app.on('ready', function(){