Add support for 'attribution_link'

This commit is contained in:
Omar Roth 2019-06-08 11:13:00 -05:00
parent 9122f8acee
commit 1c9085556c
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 10 additions and 0 deletions

View File

@ -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|