We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ConnectionManager.republish_tracks()
1 parent 1df36ea commit d02e2a1Copy full SHA for d02e2a1
plugins/getstream/vision_agents/plugins/getstream/stream_edge_transport.py
@@ -326,6 +326,9 @@ async def on_audio_received(pcm: PcmData):
326
327
# Start the connection
328
await connection.__aenter__()
329
+ # Re-publish already published tracks in case somebody is already on the call when we joined.
330
+ # Otherwise, we won't get the video track from participants joined before us.
331
+ await connection.republish_tracks()
332
self._real_connection = connection
333
334
standardize_connection = StreamConnection(connection)
0 commit comments