0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-11-26 02:55:17 +00:00

[PromoDJ] Fix page size for playlists

This commit is contained in:
DmitryScaletta 2024-02-15 12:41:29 +03:00
parent 7e96492ba0
commit 1b3c186424
No known key found for this signature in database
GPG key ID: 167A65222EDD4C2A

View file

@ -525,8 +525,8 @@ def _get_page_size(self, type):
if type == 'uenno':
return 15
if type == 'groups':
return 30
return 20
return 20
return 30
def _real_extract(self, url):
match = self._match_valid_url(url)