From dfe4e5e3a199e482cd12f77dfa8a1186883794f0 Mon Sep 17 00:00:00 2001 From: yanas Date: Fri, 6 Oct 2017 17:13:49 -0500 Subject: [PATCH] fix(defaultToolbarButtons): Fixes mute popup warning Fixes exception when trying to unmute in the scenario, where someone else is sharing a video with you. --- react/features/toolbox/defaultToolbarButtons.web.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/toolbox/defaultToolbarButtons.web.js b/react/features/toolbox/defaultToolbarButtons.web.js index 01973a9c0..453ddc78a 100644 --- a/react/features/toolbox/defaultToolbarButtons.web.js +++ b/react/features/toolbox/defaultToolbarButtons.web.js @@ -278,7 +278,7 @@ export default function getDefaultButtons() { && sharedVideoManager.isSharedVideoVolumeOn() && !sharedVideoManager.isSharedVideoOwner()) { APP.UI.showCustomToolbarPopup( - '#unableToUnmutePopup', true, 5000); + 'microphone', 'unableToUnmutePopup', true, 5000); } else { JitsiMeetJS.analytics .sendEvent('toolbar.audio.unmuted');