Skip to content

Commit

Permalink
[soundcloud] reduce API playlist page limit(closes #25274)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine authored and pareronia committed Jun 22, 2020
1 parent 4af675d commit 4479d12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/soundcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ def _real_extract(self, url):
class SoundcloudPagedPlaylistBaseIE(SoundcloudIE):
def _extract_playlist(self, base_url, playlist_id, playlist_title):
COMMON_QUERY = {
'limit': 2000000000,
'limit': 80000,
'linked_partitioning': '1',
}

Expand Down

0 comments on commit 4479d12

Please sign in to comment.