Fix duplicate query parameters in URLs when local=true for /api/v1/videos/{id}

This commit is contained in:
absidue 2024-04-20 20:46:01 +02:00
parent b673695aa2
commit b90cf286fc
1 changed files with 3 additions and 2 deletions

View File

@ -11,11 +11,12 @@ module Invidious::HttpServer
params = url.query_params
params["host"] = url.host.not_nil! # Should never be nil, in theory
params["region"] = region if !region.nil?
url.query_params = params
if absolute
return "#{HOST_URL}#{url.request_target}?#{params}"
return "#{HOST_URL}#{url.request_target}"
else
return "#{url.request_target}?#{params}"
return url.request_target
end
end