aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/index.js5
-rw-r--r--src/modules/protocol.js4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/index.js b/src/index.js
index d8107e8..ab15039 100644
--- a/src/index.js
+++ b/src/index.js
@@ -128,4 +128,9 @@ if (cli.hasArgs()) {
app.on("ready", () => {
start();
})
+
+ app.on('second-instance', (event, commandLine, workingDirectory, additionalData) => {
+ protocol(commandLine);
+ })
+
}
diff --git a/src/modules/protocol.js b/src/modules/protocol.js
index a40b67e..7f2f7c0 100644
--- a/src/modules/protocol.js
+++ b/src/modules/protocol.js
@@ -3,11 +3,11 @@ const { app } = require("electron");
const win = require("../win");
const version = require("./version");
-module.exports = async () => {
+module.exports = async (argv) => {
if (version.northstar() == "unknown")
return;
- const args = process.argv.slice(app.isPackaged ? 1 : 2);
+ const args = argv || process.argv;
for (const key of args) {
if (key.startsWith("ror2mm://")) {