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.
This commit is contained in:
chref 2020-07-03 16:43:42 +02:00 committed by GitHub
parent c1746ecdb5
commit e4742dbc99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -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());
}
/**