From: Sergey M․ Date: Thu, 3 Mar 2016 16:18:32 +0000 (+0600) Subject: [twitch:playlistbase] Fix all at once fetch X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=a8276b268074eb844f0d62ff1cc9fd163a91d970 [twitch:playlistbase] Fix all at once fetch --- 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)