Skip to content

Commit 4303964

Browse files
committed
wip: handle room updates
1 parent 30ac4e9 commit 4303964

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

livekit-rtc/livekit/rtc/room.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -769,6 +769,9 @@ def _on_room_event(self, event: proto_room.RoomEvent):
769769
)
770770
self._data_stream_tasks.add(task)
771771
task.add_done_callback(self._data_stream_tasks.discard)
772+
773+
elif which == "room_updated":
774+
print(f"received room update: {event.room_updated}")
772775

773776
def _handle_stream_header(
774777
self, header: proto_room.DataStream.Header, participant_identity: str

0 commit comments

Comments
 (0)