Fix param ordering for fetch_playlist_videos

This commit is contained in:
Omar Roth 2018-12-24 17:47:23 -06:00
parent 382a6b556d
commit f3c9566687
2 changed files with 2 additions and 1 deletions

View File

@ -514,7 +514,7 @@ get "/playlist" do |env|
end
begin
videos = fetch_playlist_videos(plid, page, playlist.video_count, locale)
videos = fetch_playlist_videos(plid, page, playlist.video_count, locale: locale)
rescue ex
videos = [] of PlaylistVideo
end

View File

@ -65,6 +65,7 @@ def fetch_playlist_videos(plid, page, video_count, continuation = nil, locale =
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