You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When starting a video conference via Jitsi it is not possible to share your desktop. Microphone and Camera work fine.
Steps to reproduce:
Configure Jitsi Integration
Enter Channel and start Video conference
Click on Share Desktop Button
Expected behavior:
My desktop (or parts of it) are shared to all other participants.
Actual behavior:
Error message "Permission to access screen wasn't granted" (in Browser Dev Tools JavaScript console). The permission is not requested from the user (as they are with Mic and Cam).
Server Setup Information:
Version of Rocket.Chat Server: 4.4.2
Operating System: Debian11(client), Debian10(server)
Deployment Method: .deb package
Number of Running Instances: 1
Client Setup Information
Desktop client versions(not working): 3.7.3 - 3.8.2
Behaviour occurs with Firefox(latest) and Chrome(latest) under Linux
Same problem has been fix in BBB integration(Issue #16972 ; Fix #17290)
Description:
When starting a video conference via Jitsi it is not possible to share your desktop. Microphone and Camera work fine.
Steps to reproduce:
Expected behavior:
My desktop (or parts of it) are shared to all other participants.
Actual behavior:
Error message "Permission to access screen wasn't granted" (in Browser Dev Tools JavaScript console). The permission is not requested from the user (as they are with Mic and Cam).
Server Setup Information:
Client Setup Information
Desktop client versions(not working): 3.7.3 - 3.8.2
Behaviour occurs with Firefox(latest) and Chrome(latest) under Linux
Same problem has been fix in BBB integration(Issue #16972 ; Fix #17290)
Permission is missing in Development Branch(https://github.com/RocketChat/Rocket.Chat/blob/develop/apps/meteor/client/views/room/contextualBar/Call/Jitsi/lib/Jitsi.js)
Line 167:
old: this.frame.setAttribute('allow', 'microphone; camera');
fix: this.frame.setAttribute('allow', 'microphone; camera; display-capture');
After deploying this fix to our server screen sharing worked fine.
The text was updated successfully, but these errors were encountered: