Broadcast playlist change to room
This commit is contained in:
parent
f987b47d8d
commit
c21b5095ee
1 changed files with 3 additions and 3 deletions
|
@ -110,7 +110,7 @@ async def handle_append(sid, data: dict[str, Any]):
|
||||||
"queue": state.queue.to_dict(),
|
"queue": state.queue.to_dict(),
|
||||||
"recent": [entry.to_dict() for entry in state.recent],
|
"recent": [entry.to_dict() for entry in state.recent],
|
||||||
},
|
},
|
||||||
room=sid,
|
room=room,
|
||||||
)
|
)
|
||||||
|
|
||||||
await sio.emit(
|
await sio.emit(
|
||||||
|
@ -137,7 +137,7 @@ async def handle_meta_info(sid, data):
|
||||||
"queue": state.queue.to_dict(),
|
"queue": state.queue.to_dict(),
|
||||||
"recent": [entry.to_dict() for entry in state.recent],
|
"recent": [entry.to_dict() for entry in state.recent],
|
||||||
},
|
},
|
||||||
room=sid,
|
room=room,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@ -166,7 +166,7 @@ async def handle_pop_then_get_next(sid, data={}):
|
||||||
"queue": state.queue.to_dict(),
|
"queue": state.queue.to_dict(),
|
||||||
"recent": [entry.to_dict() for entry in state.recent],
|
"recent": [entry.to_dict() for entry in state.recent],
|
||||||
},
|
},
|
||||||
room=sid,
|
room=room,
|
||||||
)
|
)
|
||||||
current = await state.queue.peek()
|
current = await state.queue.peek()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue