mirror of
https://github.com/solero/houdini.git
synced 2025-04-29 01:56:25 +00:00
Fix missing join() call in handle_get_shared_music_tracks
This commit is contained in:
parent
6e302e8723
commit
5293da1310
@ -181,7 +181,7 @@ async def handle_get_my_music_tracks(p):
|
|||||||
@handlers.player_in_room(SoundStudio.StudioRoomId, SoundStudio.DeckRoomId)
|
@handlers.player_in_room(SoundStudio.StudioRoomId, SoundStudio.DeckRoomId)
|
||||||
async def handle_get_shared_music_tracks(p):
|
async def handle_get_shared_music_tracks(p):
|
||||||
shared_tracks = await get_shared_tracks(p)
|
shared_tracks = await get_shared_tracks(p)
|
||||||
await p.send_xt('getsharedmusictracks', len(shared_tracks), shared_tracks)
|
await p.send_xt('getsharedmusictracks', len(shared_tracks), ','.join(shared_tracks))
|
||||||
|
|
||||||
|
|
||||||
@handlers.handler(XTPacket('musictrack', 'loadmusictrack'), client=ClientType.Vanilla)
|
@handlers.handler(XTPacket('musictrack', 'loadmusictrack'), client=ClientType.Vanilla)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user