Browse Source

fix(defaultToolbarButtons): Fixes mute popup warning

Fixes exception when trying to unmute in the scenario, where someone else is sharing a video with you.
j8
yanas 8 years ago
parent
commit
dfe4e5e3a1
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/toolbox/defaultToolbarButtons.web.js

+ 1
- 1
react/features/toolbox/defaultToolbarButtons.web.js View File

@@ -278,7 +278,7 @@ export default function getDefaultButtons() {
278 278
                         && sharedVideoManager.isSharedVideoVolumeOn()
279 279
                         && !sharedVideoManager.isSharedVideoOwner()) {
280 280
                         APP.UI.showCustomToolbarPopup(
281
-                            '#unableToUnmutePopup', true, 5000);
281
+                            'microphone', 'unableToUnmutePopup', true, 5000);
282 282
                     } else {
283 283
                         JitsiMeetJS.analytics
284 284
                             .sendEvent('toolbar.audio.unmuted');

Loading…
Cancel
Save