Microsoft Teams meeting link on linux doesn't work
If you must use Teams in linux, probably you will have this issue.
After click the meeting link, Teams opens, but not the meeting.
To solve it, you need fix the sentence to execute Teams.
Edit the /usr/bin/teams file and replace:
nohup "$TEAMS_PATH" --disable-namespace-sandbox --disable-setuid-sandbox "$@" > "$TEAMS_LOGS/teams-startup.log" 2>&1 &
by
nohup "$TEAMS_PATH" "$@" --disable-namespace-sandbox --disable-setuid-sandbox > "$TEAMS_LOGS/teams-startup.log" 2>&1 &
As you can see, the difference is only the position of "$@"
Enjoy it!
Comments
Post a Comment