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