fix(share-video): stop video from the participant list

This commit is contained in:
Mihaela Dumitru 2021-11-29 09:39:52 +02:00 committed by Calinteodor
parent 5c67e8b4ce
commit 4ed7211286
1 changed files with 4 additions and 2 deletions

View File

@ -34,6 +34,7 @@ import { sendParticipantToRoom } from '../../../breakout-rooms/actions';
import { getBreakoutRooms, getCurrentRoomId } from '../../../breakout-rooms/functions';
import { openChatById } from '../../../chat/actions';
import { setVolume } from '../../../filmstrip/actions.web';
import { stopSharedVideo } from '../../../shared-video/actions.any';
import { GrantModeratorDialog, KickRemoteParticipantDialog, MuteEveryoneDialog } from '../../../video-menu';
import { VolumeSlider } from '../../../video-menu/components/web';
import MuteRemoteParticipantsVideoDialog from '../../../video-menu/components/web/MuteRemoteParticipantsVideoDialog';
@ -250,9 +251,10 @@ class MeetingParticipantContextMenu extends Component<Props> {
* @returns {void}
*/
_onStopSharedVideo() {
const { dispatch } = this.props;
const { dispatch, onSelect } = this.props;
dispatch(this._onStopSharedVideo());
onSelect(true);
dispatch(stopSharedVideo());
}
_onMuteEveryoneElse: () => void;