diff --git a/react/features/video-menu/actions.any.js b/react/features/video-menu/actions.any.js index c63e919f5..45e5959e6 100644 --- a/react/features/video-menu/actions.any.js +++ b/react/features/video-menu/actions.any.js @@ -103,7 +103,7 @@ export function muteAllParticipants(exclude: Array, mediaType: MEDIA_TYP const localId = getLocalParticipant(state).id; if (!exclude.includes(localId)) { - dispatch(muteLocal(true, mediaType, true)); + dispatch(muteLocal(true, mediaType, mediaType !== MEDIA_TYPE.AUDIO)); } getRemoteParticipants(state).forEach((p, id) => {