You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To Reproduce spotify.searchTracks("track:Lithium+artist:Nirvana+album:Nevermind");
How the request url actually looks like: search/?q=track%3ALithium%2Bartist%3ANirvana%2Balbum%3ANevermind&type=track
How it should look like: search/?q=track%3ALithium+artist%3ANirvana+album%3ANevermind&type=track
The text was updated successfully, but these errors were encountered:
Describe the bug
If you combine multiple filters in a search (searchTracks), the "+" is also encoded, although this is not supposed to be so according to the documentation: https://developer.spotify.com/documentation/web-api/reference/#/operations/search
To Reproduce
spotify.searchTracks("track:Lithium+artist:Nirvana+album:Nevermind");
How the request url actually looks like: search/?q=track%3ALithium%2Bartist%3ANirvana%2Balbum%3ANevermind&type=track
How it should look like: search/?q=track%3ALithium+artist%3ANirvana+album%3ANevermind&type=track
The text was updated successfully, but these errors were encountered: