aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-03-03 22:18:32 +0600
committerSergey M․ <dstftw@gmail.com>2016-03-03 22:18:32 +0600
commita8276b268074eb844f0d62ff1cc9fd163a91d970 (patch)
tree27154a9326b9de96af181e7f12815dcb0dd1fbfd /youtube_dl
parentececca6cde9f42f24d1d8b74a3c56f1149f70f5d (diff)
downloadyoutube-dl-a8276b268074eb844f0d62ff1cc9fd163a91d970.tar.xz
[twitch:playlistbase] Fix all at once fetch
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/twitch.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index 0cf240e1e..8639293e3 100644
--- a/youtube_dl/extractor/twitch.py
+++ b/youtube_dl/extractor/twitch.py
@@ -303,8 +303,7 @@ class TwitchPlaylistBaseIE(TwitchBaseIE):
'Twitch paging is broken on twitch side, requesting all videos at once',
channel_id)
broken_paging_detected = True
- limit = total
- offset = 0
+ offset = total
counter_override = '(all at once)'
continue
entries.extend(page_entries)