save host when using dash manifest

This commit is contained in:
Andrew Zhao 2021-01-10 18:00:45 -05:00
parent c28b1f6fb9
commit b7fe1db89a

View file

@ -3190,7 +3190,8 @@ get "/api/manifest/dash/id/:id" do |env|
url = url.rchop("</BaseURL>")
if local
url = URI.parse(url).full_path
uri = URI.parse(url)
url = "#{uri.full_path}host/#{uri.host}/"
end
"<BaseURL>#{url}</BaseURL>"