Add support for 'attribution_link'

pull/592/head
Omar Roth 5 years ago
parent 9122f8acee
commit 1c9085556c
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

@ -2783,6 +2783,16 @@ get "/profile" do |env|
end
end
get "/attribution_link" do |env|
if query = env.params.query["u"]?
url = URI.parse(query).full_path
else
url = "/"
end
env.redirect url
end
# Page used by YouTube to provide captioning widget, since we
# don't support it we redirect to '/'
get "/timedtext_video" do |env|

Loading…
Cancel
Save