We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed188b9 commit 8a48dabCopy full SHA for 8a48dab
1 file changed
livekit-rtc/livekit/rtc/room.py
@@ -561,9 +561,7 @@ def on_participant_connected(participant):
561
# disconnect() unsubscribes too, but it early-returns when the
562
# room is already disconnected (e.g. removed remotely).
563
ffi_queue = self._ffi_queue
564
- self._task.add_done_callback(
565
- lambda _: FfiClient.instance.queue.unsubscribe(ffi_queue)
566
- )
+ self._task.add_done_callback(lambda _: FfiClient.instance.queue.unsubscribe(ffi_queue))
567
568
# Unblock the FFI server once this SDK is ready to receive room events.
569
ready_req = proto_ffi.FfiRequest()
0 commit comments