Pass user's connection state for their screenshare feed

This commit is contained in:
David Baker 2022-11-15 17:19:09 +00:00
parent 80f07a5454
commit f2746ab994

View file

@ -292,7 +292,7 @@ export function InCallView({
focused: true, focused: true,
isLocal: screenshareFeed.isLocal(), isLocal: screenshareFeed.isLocal(),
presenter: false, presenter: false,
connectionState: ConnectionState.CONNECTED, // by definition since the screen shares arrived on the same connection connectionState: connStates.get(screenshareFeed.userId),
}); });
} }