forked from midou/invidious
Try to prevent redirect for DASH streams
This commit is contained in:
parent
e5fa5df7be
commit
28df6881a7
@ -4321,7 +4321,7 @@ get "/api/manifest/dash/id/:id" do |env|
|
||||
url = url.rchop("</BaseURL>")
|
||||
|
||||
if local
|
||||
url = URI.parse(url).full_path.lchop("/")
|
||||
url = URI.parse(url).full_path
|
||||
end
|
||||
|
||||
"<BaseURL>#{url}</BaseURL>"
|
||||
@ -4334,7 +4334,7 @@ get "/api/manifest/dash/id/:id" do |env|
|
||||
|
||||
if local
|
||||
adaptive_fmts.each do |fmt|
|
||||
fmt["url"] = URI.parse(fmt["url"]).full_path.lchop("/")
|
||||
fmt["url"] = URI.parse(fmt["url"]).full_path
|
||||
end
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user