From 2d2400edae3d3586b4f14eafa9a875e8645ca033 Mon Sep 17 00:00:00 2001 From: Robert Long Date: Thu, 3 Feb 2022 17:28:10 -0800 Subject: [PATCH] Fix active speaker focusing --- src/room/InCallView.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/InCallView.jsx b/src/room/InCallView.jsx index 3575263..5a7db8b 100644 --- a/src/room/InCallView.jsx +++ b/src/room/InCallView.jsx @@ -54,7 +54,7 @@ export function InCallView({ participants.push({ id: callFeed.stream.id, callFeed, - isActiveSpeaker: + focused: screenshareFeeds.length === 0 ? callFeed.userId === activeSpeaker : false,