diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-03-03 22:12:55 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-03-03 22:12:55 +0600 |
commit | ececca6cde9f42f24d1d8b74a3c56f1149f70f5d (patch) | |
tree | ff3bb31d126cb7d6d542f0aa8cf994a7c8b5b694 | |
parent | 8bbb4b56ee6c582f416ca1f8951a6821fccc1548 (diff) |
[twitch:playlistbase] Restore original _PAGE_LIMIT
-rw-r--r-- | youtube_dl/extractor/twitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
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( |