Add fix for continuation on playlists smaller than 100 videos

This commit is contained in:
Omar Roth 2018-10-10 19:47:51 -05:00
parent 921c34aa65
commit c87aa8671c
1 changed files with 5 additions and 0 deletions

View File

@ -65,6 +65,11 @@ def fetch_playlist_videos(plid, page, video_count, continuation = nil)
nodeset = document.xpath_nodes(%q(.//tr[contains(@class, "pl-video")]))
videos = extract_playlist(plid, nodeset, 0)
if continuation
until videos[0].id == continuation
videos.shift
end
end
end
end