diff --git a/docs/changes.rst b/docs/changes.rst index 8c2087e5..266f73f2 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -24,6 +24,9 @@ v0.11.0 (in development) add "spotify:artist:5TgQ66WuWkoQ2xYxaSTnVP" add "spotify:user:p3.no:playlist:0XX6tamRiqEgh3t6FPFEkw" +- Increase max number of tracks returned by searches from 100 to 200, which + seems to be Spotify's current max limit. + **Local backend** - Load track dates from tag cache. diff --git a/mopidy/backends/spotify/library.py b/mopidy/backends/spotify/library.py index 7fcf286f..81587e00 100644 --- a/mopidy/backends/spotify/library.py +++ b/mopidy/backends/spotify/library.py @@ -146,7 +146,7 @@ class SpotifyLibraryProvider(base.BaseLibraryProvider): self.backend.spotify.session.search( spotify_query, callback, - track_count=100, album_count=0, artist_count=0) + track_count=200, album_count=0, artist_count=0) try: return future.get(timeout=settings.SPOTIFY_TIMEOUT)