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.
1 parent 0ef63ce commit 82d542bCopy full SHA for 82d542b
1 file changed
livekit-rtc/livekit/rtc/room.py
@@ -467,6 +467,11 @@ def on_participant_connected(participant):
467
req.connect.options.auto_subscribe = options.auto_subscribe
468
req.connect.options.dynacast = options.dynacast
469
470
+ # The Python SDK still implements data streams in Python on top of raw FFI
471
+ # packets, so always advertise only legacy (v1) data stream support to other
472
+ # clients.
473
+ req.connect.options.data_stream.use_legacy_client_implementation = True
474
+
475
if options.connect_timeout is not None:
476
req.connect.options.connect_timeout_ms = int(options.connect_timeout * 1000)
477
0 commit comments