diff --git a/src/spotifyaio/spotify.py b/src/spotifyaio/spotify.py index 475c308..a5b1f89 100644 --- a/src/spotifyaio/spotify.py +++ b/src/spotifyaio/spotify.py @@ -434,7 +434,7 @@ async def add_to_queue(self, uri: str, device_id: str | None = None) -> None: data: dict[str, str] = {"uri": uri} if device_id: data["device_id"] = device_id - await self._post("v1/me/player/queue", data=data) + await self._post("v1/me/player/queue", params=data) @catch_json_decode_error async def get_playlist(self, playlist_id: str) -> Playlist: