Skip to content

Commit

Permalink
fix(visitors): Visitors raise hand to be promoted, skip notification …
Browse files Browse the repository at this point in the history
…for speak line.
  • Loading branch information
damencho committed Aug 21, 2024
1 parent 015f66a commit 9527d30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion react/features/base/participants/subscriber.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ StateListenerRegistry.register(
if (raisedHandsQueue.length
&& isNextToSpeak(store.getState())
&& !hasBeenNotified(store.getState())
&& !getDisableNextSpeakerNotification(store.getState())) {
&& !getDisableNextSpeakerNotification(store.getState())
&& !store.getState()['features/visitors'].iAmVisitor) { // visitors raise hand to be promoted
_notifyNextSpeakerInRaisedHandQueue(store);
}
if (!raisedHandsQueue[0]) {
Expand Down

0 comments on commit 9527d30

Please sign in to comment.