mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Proxy: fix the throttling issue once for all
This commit is contained in:
parent
a743d01a10
commit
865b7e584d
1 changed files with 5 additions and 6 deletions
|
@ -53,11 +53,7 @@ module Invidious::Routes::VideoPlayback
|
|||
headers = HTTP::Headers.new
|
||||
MediaProxy.copy_request_headers(from: env.request.headers, to: headers)
|
||||
|
||||
if has_range_param
|
||||
url += "&range=#{range}"
|
||||
else
|
||||
headers["Range"] = "bytes=#{range || "0-"}"
|
||||
end
|
||||
headers["Range"] = "bytes=" + (range || "0-")
|
||||
|
||||
client = make_client(URI.parse(host), region)
|
||||
response = HTTP::Client::Response.new(500)
|
||||
|
@ -107,13 +103,16 @@ module Invidious::Routes::VideoPlayback
|
|||
return error_template(403, "Administrator has disabled this endpoint.")
|
||||
end
|
||||
|
||||
# Add back the range header. Important!
|
||||
headers["Range"] = "bytes=" + (range || "0-")
|
||||
|
||||
MediaProxy.proxy_dash_chunk(env, client, url, region)
|
||||
elsif has_range_param
|
||||
if CONFIG.disabled?("dash")
|
||||
return error_template(403, "Administrator has disabled this endpoint.")
|
||||
end
|
||||
|
||||
MediaProxy.proxy_dash_chunk(env, client, url, region)
|
||||
MediaProxy.proxy_dash_chunk(env, client, url + "&range=#{range}", region)
|
||||
else
|
||||
if (title && CONFIG.disabled?("downloads")) || (title.nil? && CONFIG.disabled?("local"))
|
||||
return error_template(403, "Administrator has disabled this endpoint.")
|
||||
|
|
Loading…
Reference in a new issue