diff --git a/react/features/base/participants/components/ParticipantView.native.tsx b/react/features/base/participants/components/ParticipantView.native.tsx index 46ad03ad40a5d..390bbd5e930a5 100644 --- a/react/features/base/participants/components/ParticipantView.native.tsx +++ b/react/features/base/participants/components/ParticipantView.native.tsx @@ -53,6 +53,11 @@ interface IProps { */ _renderVideo: boolean; + /** + * Whether the shared video is enabled or not. + */ + _sharedVideoEnabled: boolean; + /** * The video Track of the participant with {@link #participantId}. */ @@ -168,6 +173,7 @@ class ParticipantView extends Component { _isConnectionInactive, _isSharedVideoParticipant, _renderVideo: renderVideo, + _sharedVideoEnabled, _videoTrack: videoTrack, disableVideo, onPress @@ -178,7 +184,7 @@ class ParticipantView extends Component { ? this.props.testHintId : `org.jitsi.meet.Participant#${this.props.participantId}`; - const renderSharedVideo = _isSharedVideoParticipant && !disableVideo; + const renderSharedVideo = _isSharedVideoParticipant && !disableVideo && _sharedVideoEnabled; return (