From 4ed7211286fbe163e8d64cc9fa551097b8434a7f Mon Sep 17 00:00:00 2001 From: Mihaela Dumitru Date: Mon, 29 Nov 2021 09:39:52 +0200 Subject: [PATCH] fix(share-video): stop video from the participant list --- .../components/web/MeetingParticipantContextMenu.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js b/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js index 379fe0f9c..5d76bd602 100644 --- a/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js +++ b/react/features/participants-pane/components/web/MeetingParticipantContextMenu.js @@ -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 { * @returns {void} */ _onStopSharedVideo() { - const { dispatch } = this.props; + const { dispatch, onSelect } = this.props; - dispatch(this._onStopSharedVideo()); + onSelect(true); + dispatch(stopSharedVideo()); } _onMuteEveryoneElse: () => void;