Browse Source

[twitch:playlistbase] Fix all at once fetch

Sergey M․ 9 years ago
parent
commit
a8276b2680
1 changed files with 1 additions and 2 deletions
  1. 1 2
      youtube_dl/extractor/twitch.py

+ 1 - 2
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)