Add stub for '/timedtext_video'

This commit is contained in:
Omar Roth 2019-05-26 13:49:35 -05:00
parent 51c5f28443
commit c049ba59ff
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2
1 changed files with 6 additions and 0 deletions

View File

@ -2950,6 +2950,12 @@ get "/profile" do |env|
end
end
# Page used by YouTube to provide captioning widget, since we
# don't support it we redirect to '/'
get "/timedtext_video" do |env|
env.redirect "/"
end
get "/user/:user" do |env|
user = env.params.url["user"]
env.redirect "/channel/#{user}"