Redirect mixes

This commit is contained in:
Omar Roth 2018-10-06 22:18:50 -05:00
parent 98bb20abcd
commit 3733fe8272
1 changed files with 8 additions and 0 deletions

View File

@ -402,6 +402,10 @@ 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.starts_with? "RD"
next env.redirect "/mix?list=#{plid}"
end
begin begin
playlist = fetch_playlist(plid) playlist = fetch_playlist(plid)
rescue ex rescue ex
@ -2927,6 +2931,10 @@ get "/api/v1/playlists/:plid" do |env|
page = env.params.query["page"]?.try &.to_i? page = env.params.query["page"]?.try &.to_i?
page ||= 1 page ||= 1
if plid.starts_with? "RD"
next env.redirect "/api/v1/mixes/#{plid}"
end
begin begin
playlist = fetch_playlist(plid) playlist = fetch_playlist(plid)
rescue ex rescue ex