1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-29 12:41:20 +02:00

[soundcloud:search] Fix pagination

This commit is contained in:
pukkandan 2021-11-18 22:38:00 +05:30
parent e16fefd869
commit 8863c8f09e
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698

View File

@ -893,5 +893,6 @@ def _get_collection(self, endpoint, collection_id, **query):
break
def _get_n_results(self, query, n):
tracks = self._get_collection('search/tracks', query, limit=n, q=query)
return self.playlist_result(tracks, query, query)
return self.playlist_result(itertools.islice(
self._get_collection('search/tracks', query, limit=n, q=query),
0, None if n == float('inf') else n), query, query)