mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 09:07:48 +01:00
Add region
to latest_version
This commit is contained in:
parent
0d509c82ee
commit
27934dad37
1 changed files with 3 additions and 1 deletions
|
@ -3662,6 +3662,8 @@ get "/latest_version" do |env|
|
|||
id = env.params.query["id"]?
|
||||
itag = env.params.query["itag"]?
|
||||
|
||||
region = env.params.query["region"]?
|
||||
|
||||
local = env.params.query["local"]?
|
||||
local ||= "false"
|
||||
local = local == "true"
|
||||
|
@ -3670,7 +3672,7 @@ get "/latest_version" do |env|
|
|||
halt env, status_code: 400
|
||||
end
|
||||
|
||||
video = get_video(id, PG_DB, proxies)
|
||||
video = get_video(id, PG_DB, proxies, region: region)
|
||||
|
||||
fmt_stream = video.fmt_stream(decrypt_function)
|
||||
adaptive_fmts = video.adaptive_fmts(decrypt_function)
|
||||
|
|
Loading…
Reference in a new issue