From 1b3c186424df4f3acfa89cf9685768d5d150e088 Mon Sep 17 00:00:00 2001 From: DmitryScaletta Date: Thu, 15 Feb 2024 12:41:29 +0300 Subject: [PATCH] [PromoDJ] Fix page size for playlists --- yt_dlp/extractor/promodj.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yt_dlp/extractor/promodj.py b/yt_dlp/extractor/promodj.py index cdf33741f3..dae880352a 100644 --- a/yt_dlp/extractor/promodj.py +++ b/yt_dlp/extractor/promodj.py @@ -525,8 +525,8 @@ class PromoDJPlaylistIE(PromoDJBaseIE): 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)