diff options
author | chref <33349974+chref@users.noreply.github.com> | 2020-07-03 16:43:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-03 16:43:42 +0200 |
commit | e4742dbc995a10b5a1eef84ca65ced725cbd95a7 (patch) | |
tree | 7bada3f6069285ebc2af973878b323d8c92d5c58 | |
parent | c1746ecdb5b83a423e56ddf5c7347a0020a6ec27 (diff) |
Fix join via protocol link on Linux (#413)
Perform command-line protocol argument handling on all platforms, not only
win32. This allows the client to join a meeting passed on the command-line
even if it is no instance of the client already running.
-rw-r--r-- | main.js | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -222,14 +222,11 @@ function createJitsiMeetWindow() { }); /** - * This is for windows [win32] - * so when someone tries to enter something like jitsi-meet://test + * When someone tries to enter something like jitsi-meet://test * while app is closed * it will trigger this event below */ - if (process.platform === 'win32') { - handleProtocolCall(process.argv.pop()); - } + handleProtocolCall(process.argv.pop()); } /** |