Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/spotifyaio/spotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down