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,6 +193,9 @@ function quitNow() {
app.quit(); app.quit();
} }
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) => { const isSecondaryInstance = app.makeSingleInstance((argv) => {
if (win) { if (win) {
if (win.isMinimized()) { if (win.isMinimized()) {
@ -212,6 +215,7 @@ if (isSecondaryInstance) { // We're not in the original process, so quit
quitNow(); quitNow();
return; return;
} }
}
app.on('ready', function(){ app.on('ready', function(){
launchDaemonIfNotRunning(); launchDaemonIfNotRunning();