From 9527d302ec8fc743aab510503339d4ee9d38edb6 Mon Sep 17 00:00:00 2001 From: damencho Date: Wed, 21 Aug 2024 08:48:19 -0500 Subject: [PATCH] fix(visitors): Visitors raise hand to be promoted, skip notification for speak line. --- react/features/base/participants/subscriber.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react/features/base/participants/subscriber.ts b/react/features/base/participants/subscriber.ts index b385ff3a3763e..a50870fa97092 100644 --- a/react/features/base/participants/subscriber.ts +++ b/react/features/base/participants/subscriber.ts @@ -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]) {