Skip to content
Snippets Groups Projects
Unverified Commit 7fcf5a85 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #5992 from prlanzarin/fix-screenshare-exception

[HTML5] Fixed WebRTC Screenshare isVideoBroadcasting check
parents 96489c30 ad353a6e
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,9 @@ const isVideoBroadcasting = () => {
return false;
}
const hasStream = ds.screenshare.stream ? true : false;
// TODO commented out isPresenter to enable screen viewing to the presenter
return ds.screenshare.stream; // && !PresentationService.isPresenter();
return hasStream; // && !PresentationService.isPresenter();
}
// if remote screenshare has been ended disconnect and hide the video stream
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment