projects
/
music-assistant-server.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca0ec09
)
add missing await
author
Santiago Soto
<santiago@soto.uy>
Wed, 2 Apr 2025 22:22:46 +0000
(19:22 -0300)
committer
Santiago Soto
<santiago@soto.uy>
Wed, 2 Apr 2025 22:22:46 +0000
(19:22 -0300)
music_assistant/providers/snapcast/__init__.py
patch
|
blob
|
history
diff --git
a/music_assistant/providers/snapcast/__init__.py
b/music_assistant/providers/snapcast/__init__.py
index bc374f83521ef18debab3eebad79fe824df25d16..491d37aeecbef0ea8a576998b0cfa80995b3ee0d 100644
(file)
--- a/
music_assistant/providers/snapcast/__init__.py
+++ b/
music_assistant/providers/snapcast/__init__.py
@@
-446,7
+446,7
@@
class SnapCastProvider(PlayerProvider):
async def remove_player(self, player_id: str) -> None:
"""Remove the client from the snapserver when it is deleted."""
- self._snapserver.delete_client(self._get_snapclient_id(player_id))
+
await
self._snapserver.delete_client(self._get_snapclient_id(player_id))
async def cmd_volume_set(self, player_id: str, volume_level: int) -> None:
"""Send VOLUME_SET command to given player."""