mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
Add CORS header for /videoplayback redirect
This commit is contained in:
parent
aa389399bc
commit
9cb96de426
1 changed files with 1 additions and 0 deletions
|
@ -1034,6 +1034,7 @@ get "/videoplayback*" do |env|
|
|||
client.get(url, headers) do |response|
|
||||
if response.headers["Location"]?
|
||||
url = URI.parse(response.headers["Location"])
|
||||
env.response.headers["Access-Control-Allow-Origin"] = "*"
|
||||
env.redirect url.full_path
|
||||
else
|
||||
env.response.status_code = response.status_code
|
||||
|
|
Loading…
Reference in a new issue