Skip to content

Commit

Permalink
Show muted state correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
grishka committed Feb 22, 2021
1 parent e3112a4 commit 17d9c9f
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -284,6 +284,9 @@ else if(user.isFollowedBySpeaker)
raiseBtn.setEnabled(channel.isHandraiseEnabled);
raiseBtn.setVisibility(svc.isSelfSpeaker() ? View.GONE : View.VISIBLE);
muteBtn.setVisibility(svc.isSelfSpeaker() ? View.VISIBLE : View.GONE);
if(svc.isSelfSpeaker()){
onUserMuteChanged(Integer.parseInt(ClubhouseSession.userID), svc.isMuted());
}
}

@Override
Expand Down

0 comments on commit 17d9c9f

Please sign in to comment.