From e63b3016c9d932e6276f9b27067b8c53a60829b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=8F=D0=BD=20=D0=9C=D0=B8=D0=BD=D0=BA?= =?UTF-8?q?=D0=BE=D0=B2?= Date: Fri, 20 Aug 2021 11:51:38 -0500 Subject: [PATCH] feat: Allow AV moderation for p2p users. --- react/features/participants-pane/functions.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/react/features/participants-pane/functions.js b/react/features/participants-pane/functions.js index 5a112cca9..7358f6763 100644 --- a/react/features/participants-pane/functions.js +++ b/react/features/participants-pane/functions.js @@ -9,7 +9,6 @@ import { getFeatureFlag, INVITE_ENABLED } from '../base/flags'; import { MEDIA_TYPE, type MediaType } from '../base/media/constants'; import { getDominantSpeakerParticipant, - getParticipantCount, isLocalParticipantModerator, isParticipantModerator } from '../base/participants/functions'; @@ -50,7 +49,7 @@ export const findStyledAncestor = (target: Object, component: any) => { * @returns {MediaState} */ export function isForceMuted(participant: Object, mediaType: MediaType, state: Object) { - if (getParticipantCount(state) > 2 && isEnabledFromState(mediaType, state)) { + if (isEnabledFromState(mediaType, state)) { if (participant.local) { return !isLocalParticipantApprovedFromState(mediaType, state); }