Strip domain from caption URLs

This commit is contained in:
Omar Roth 2019-12-01 17:52:39 -05:00
parent 04d56420d1
commit 062867a38d
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

View File

@ -3852,7 +3852,7 @@ get "/api/v1/captions/:id" do |env|
caption = caption[0]
end
url = "#{caption.baseUrl}&tlang=#{tlang}"
url = URI.parse("#{caption.baseUrl}&tlang=#{tlang}").full_path
# Auto-generated captions often have cues that aren't aligned properly with the video,
# as well as some other markup that makes it cumbersome, so we try to fix that here