From f2746ab9942252afab1476039d61f9130745f400 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 15 Nov 2022 17:19:09 +0000 Subject: [PATCH] Pass user's connection state for their screenshare feed --- src/room/InCallView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room/InCallView.tsx b/src/room/InCallView.tsx index d3d0fc0..67d9775 100644 --- a/src/room/InCallView.tsx +++ b/src/room/InCallView.tsx @@ -292,7 +292,7 @@ export function InCallView({ focused: true, isLocal: screenshareFeed.isLocal(), presenter: false, - connectionState: ConnectionState.CONNECTED, // by definition since the screen shares arrived on the same connection + connectionState: connStates.get(screenshareFeed.userId), }); }