mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[soundcloud:search] Fix pagination
This commit is contained in:
parent
e16fefd869
commit
8863c8f09e
1 changed files with 3 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue