diff --git a/modules/UI/UI.js b/modules/UI/UI.js index 65b8c0666..b190aa5e3 100644 --- a/modules/UI/UI.js +++ b/modules/UI/UI.js @@ -356,8 +356,8 @@ UI.askForNickname = function() { /** * Sets muted audio state for participant */ -UI.setAudioMuted = function(id, muted) { - VideoLayout.onAudioMute(id, muted); +UI.setAudioMuted = function(id) { + // FIXME: Maybe this can be removed! if (APP.conference.isLocalId(id)) { APP.conference.updateAudioIconEnabled(); } diff --git a/modules/UI/videolayout/RemoteVideo.js b/modules/UI/videolayout/RemoteVideo.js index 50fd5988f..749a7f227 100644 --- a/modules/UI/videolayout/RemoteVideo.js +++ b/modules/UI/videolayout/RemoteVideo.js @@ -198,7 +198,6 @@ export default class RemoteVideo extends SmallVideo {