fix(defaultToolbarButtons): Fixes mute popup warning

Fixes exception when trying to unmute in the scenario, where someone else is sharing a video with you.
pull/2043/head
yanas 8 years ago committed by GitHub
parent d4d2cb4aad
commit dfe4e5e3a1
  1. 2
      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');

Loading…
Cancel
Save