Fix host in redirect

pull/429/head
Omar Roth 6 years ago
parent 61769c6f9c
commit eee973fe86

@ -4240,10 +4240,11 @@ get "/videoplayback" do |env|
if response.headers["Location"]?
url = URI.parse(response.headers["Location"])
host = url.host
env.response.headers["Access-Control-Allow-Origin"] = "*"
url = url.full_path
url += "&host=#{host.lchop("https://")}"
url += "&host=#{host}"
if region
url += "&region=#{region}"
@ -4267,10 +4268,11 @@ get "/videoplayback" do |env|
if response.headers["Location"]?
url = URI.parse(response.headers["Location"])
host = url.host
env.response.headers["Access-Control-Allow-Origin"] = "*"
url = url.full_path
url += "&host=#{host.lchop("https://")}"
url += "&host=#{host}"
if region
url += "&region=#{region}"

Loading…
Cancel
Save