diff options
author | Jan200101 <sentrycraft123@gmail.com> | 2024-08-14 12:13:14 +0200 |
---|---|---|
committer | Jan200101 <sentrycraft123@gmail.com> | 2024-08-14 12:13:14 +0200 |
commit | 29e7a323d26e985f47015ad8b64315fe8afa5b72 (patch) | |
tree | bec030ba19d67acde286d9980f186cc032864ffb /src/modules/protocol.js | |
parent | 027b9dfb30d2ac09e555a3311b9ce37783c1ca9f (diff) | |
download | Viper-29e7a323d26e985f47015ad8b64315fe8afa5b72.tar.gz Viper-29e7a323d26e985f47015ad8b64315fe8afa5b72.zip |
feat: parse commandLine of secondary instances
Diffstat (limited to 'src/modules/protocol.js')
-rw-r--r-- | src/modules/protocol.js | 4 |
1 files changed, 2 insertions, 2 deletions
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://")) { |