Revert "fix: Fixes reloads after enabling AV moderation."

This reverts commit 38f9c97f40.
This commit is contained in:
Дамян Минков 2021-08-24 13:30:51 -05:00
parent fc59cdbdbe
commit e348270099
3 changed files with 8 additions and 10 deletions

View File

@ -284,13 +284,11 @@ StateListenerRegistry.register(
} }
}); });
} else { } else {
const localParticipantId = getLocalParticipant(store.getState)?.id; const localParticipantId = getLocalParticipant(store.getState).id;
if (localParticipantId) { // We left the conference, the local participant must be updated.
// We left the conference, the local participant must be updated. _e2eeUpdated(store, conference, localParticipantId, false);
_e2eeUpdated(store, conference, localParticipantId, false); _raiseHandUpdated(store, conference, localParticipantId, false);
_raiseHandUpdated(store, conference, localParticipantId, false);
}
} }
} }
); );

View File

@ -326,7 +326,7 @@ class MeetingParticipantContextMenu extends Component<Props, State> {
onMouseEnter = { onEnter } onMouseEnter = { onEnter }
onMouseLeave = { onLeave }> onMouseLeave = { onLeave }>
{ {
!_participant?.isFakeParticipant && ( !_participant.isFakeParticipant && (
<> <>
<ContextMenuItemGroup> <ContextMenuItemGroup>
{ {
@ -393,7 +393,7 @@ class MeetingParticipantContextMenu extends Component<Props, State> {
} }
{ {
_participant?.isFakeParticipant && _localVideoOwner && ( _participant.isFakeParticipant && _localVideoOwner && (
<ContextMenuItem onClick = { this._onStopSharedVideo }> <ContextMenuItem onClick = { this._onStopSharedVideo }>
<ContextMenuIcon src = { IconShareVideo } /> <ContextMenuIcon src = { IconShareVideo } />
<span>{t('toolbar.stopSharedVideo')}</span> <span>{t('toolbar.stopSharedVideo')}</span>

View File

@ -150,7 +150,7 @@ function MeetingParticipantItem({
videoMuteState = { _isVideoMuted ? MEDIA_STATE.MUTED : MEDIA_STATE.UNMUTED } videoMuteState = { _isVideoMuted ? MEDIA_STATE.MUTED : MEDIA_STATE.UNMUTED }
youText = { youText }> youText = { youText }>
{ {
!_participant?.isFakeParticipant && ( !_participant.isFakeParticipant && (
<> <>
<ParticipantQuickAction <ParticipantQuickAction
askUnmuteText = { askUnmuteText } askUnmuteText = { askUnmuteText }
@ -165,7 +165,7 @@ function MeetingParticipantItem({
) )
} }
{ {
_participant?.isFakeParticipant && _localVideoOwner && ( _participant.isFakeParticipant && _localVideoOwner && (
<ParticipantActionEllipsis <ParticipantActionEllipsis
aria-label = { participantActionEllipsisLabel } aria-label = { participantActionEllipsisLabel }
onClick = { onContextMenu } /> onClick = { onContextMenu } />