From ececca6cde9f42f24d1d8b74a3c56f1149f70f5d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Thu, 3 Mar 2016 22:12:55 +0600 Subject: [PATCH] [twitch:playlistbase] Restore original _PAGE_LIMIT --- youtube_dl/extractor/twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index a9f8a5b8b..0cf240e1e 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -272,7 +272,7 @@ class TwitchVodIE(TwitchItemBaseIE): class TwitchPlaylistBaseIE(TwitchBaseIE): _PLAYLIST_URL = '%s/kraken/channels/%%s/videos/?offset=%%d&limit=%%d' % TwitchBaseIE._API_BASE - _PAGE_LIMIT = 10 + _PAGE_LIMIT = 100 def _extract_playlist(self, channel_id): info = self._download_json( -- 2.30.2