Fixed isVideoBroadcasting check to return a bool
This commit is contained in:
parent
96489c30a8
commit
ad353a6e84
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user