From a8276b268074eb844f0d62ff1cc9fd163a91d970 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sergey=20M=E2=80=A4?= Date: Thu, 3 Mar 2016 22:18:32 +0600 Subject: [PATCH] [twitch:playlistbase] Fix all at once fetch --- youtube_dl/extractor/twitch.py | 3 +-- 1 file changed, 1 insertion(+), 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) -- 2.30.2