Minor refactor

This commit is contained in:
Omar Roth 2018-09-17 20:07:32 -05:00
parent 64cc0362fb
commit 53c8b5ff2e
1 changed files with 6 additions and 10 deletions

View File

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