From 27934dad379682fab59c2be39aac30914cd5a356 Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 9 Feb 2019 12:28:43 -0600 Subject: [PATCH] Add `region` to `latest_version` --- src/invidious.cr | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/invidious.cr b/src/invidious.cr index 72ac8caf..b210fcc3 100644 --- a/src/invidious.cr +++ b/src/invidious.cr @@ -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)