feat(participants-pane) removed getIsParticipantAudioMuted

pull/9610/head jitsi-meet_6114
Calin Chitu 4 years ago committed by Hristo Terezov
parent becaf0806a
commit 0f8fa4f059
  1. 16
      react/features/video-menu/actions.any.js

@ -23,7 +23,6 @@ import {
getRemoteParticipants,
muteRemoteParticipant
} from '../base/participants';
import { getIsParticipantAudioMuted } from '../base/tracks';
declare var APP: Object;
@ -108,18 +107,3 @@ export function muteAllParticipants(exclude: Array<string>, mediaType: MEDIA_TYP
};
}
/**
* Don't allow participants to unmute video/audio.
*
* @returns {Function}
*/
export function blockParticipantsAudioVideo() {
return (dispatch: Dispatch<any>, getState: Function) => {
const state = getState();
const participants = state['features/base/participants'];
participants
.map(p => !getIsParticipantAudioMuted(p) && setAudioMuted(true));
};
}

Loading…
Cancel
Save