mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-05-31 14:11:54 +05:30 
			
		
		
		
	Fix duplicate query parameters in URLs when local=true for /api/v1/videos/{id}
This commit is contained in:
		| @@ -11,11 +11,12 @@ module Invidious::HttpServer | |||||||
|       params = url.query_params |       params = url.query_params | ||||||
|       params["host"] = url.host.not_nil! # Should never be nil, in theory |       params["host"] = url.host.not_nil! # Should never be nil, in theory | ||||||
|       params["region"] = region if !region.nil? |       params["region"] = region if !region.nil? | ||||||
|  |       url.query_params = params | ||||||
|  |  | ||||||
|       if absolute |       if absolute | ||||||
|         return "#{HOST_URL}#{url.request_target}?#{params}" |         return "#{HOST_URL}#{url.request_target}" | ||||||
|       else |       else | ||||||
|         return "#{url.request_target}?#{params}" |         return url.request_target | ||||||
|       end |       end | ||||||
|     end |     end | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user