question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Mute Everyone Button appears even when it shouldn't

See original GitHub issue

Description:

In the App, even when the participant is not a moderator, the mute everyone button appears

Steps to reproduce:

join a room as a non moderator - open the overflow menu - you can see the mute everyone button

Expected behavior:

Server information:

  • Jitsi Meet version:
  • Operating System:

Client information:

  • Browser / app version: 20.6.2 app
  • Operating System: iOS

Additional information:

in MuteEveryoneButton.js we check for visible: visible && isModerator && !disableRemoteMute but visible and disableRemoteMute could be undefined. When we check for this, visible will often be undefined and thus visible, even if the button has no effect.

to fix this we could invert all the checks to avoid undefined variables:

!(!visible && disableRemoteMute && !isModerator)

seems to be working for me.
Explanation:

the expression will be true if: visible is true or undefined AND disableremotemenu is true or undefined AND you are a moderator (or it’s undefined, which should not happen I think)

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:1
  • Comments:9 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
damenchocommented, Jan 22, 2021

🤦 I see your screenshot now … it is no mobile … So @saghul I reproduce this on jitsi-meet app locally, so its a bug in the mobile app.

0reactions
pierreozouxcommented, Feb 10, 2022

I just checked, this is fixed.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Speakers on permanent mute and unable to clear it on ...
If it doesn't fix the issue, then go to System tray, right-click on Speaker Icon, then select Open Volume Mixer. Ensure that all...
Read more >
Mute all participants except host & co-hosts - Feature Requests
Put my mouse cursor on top of the name, mute button revealed, clicked on it. Is s/he muted? NO!!! Instead, the chat box...
Read more >
Mute Button not Muting - Apple Support Communities
I for one do not like where the new mute button is. ... the fact that I can mute all other system alerts...
Read more >
Petition for a permanent mute all button - Paladins
Mute all is a bad idea. People who want no communication just shouldn't play a team based shooter. But, I think the option...
Read more >
Mute all in a Teams meeting - Marquette University
If some participants are unmuted, click or tap the Mute all button. This prompt appears for each section you mute: "Mute everyone? This...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found