youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit a8276b268074eb844f0d62ff1cc9fd163a91d970
parent ececca6cde9f42f24d1d8b74a3c56f1149f70f5d
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu,  3 Mar 2016 22:18:32 +0600

[twitch:playlistbase] Fix all at once fetch

Diffstat:
Myoutube_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 @@ -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)