diff --git a/react/features/video-menu/actions.any.js b/react/features/video-menu/actions.any.js index 00c9c9aae..e49965b20 100644 --- a/react/features/video-menu/actions.any.js +++ b/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, mediaType: MEDIA_TYP }; } - -/** - * Don't allow participants to unmute video/audio. - * - * @returns {Function} - */ -export function blockParticipantsAudioVideo() { - return (dispatch: Dispatch, getState: Function) => { - const state = getState(); - const participants = state['features/base/participants']; - - participants - .map(p => !getIsParticipantAudioMuted(p) && setAudioMuted(true)); - }; -}