Minor refactor

This commit is contained in:
Omar Roth 2018-09-17 20:07:32 -05:00
parent 64cc0362fb
commit 53c8b5ff2e

View File

@ -390,17 +390,13 @@ get "/playlist" do |env|
page = env.params.query["page"]?.try &.to_i? page = env.params.query["page"]?.try &.to_i?
page ||= 1 page ||= 1
if plid begin
begin videos = extract_playlist(plid, page)
videos = extract_playlist(plid, page) rescue ex
rescue ex error_message = ex.message
error_message = ex.message next templated "error"
next templated "error"
end
playlist = fetch_playlist(plid)
else
next env.redirect "/"
end end
playlist = fetch_playlist(plid)
templated "playlist" templated "playlist"
end end