lib/httpx/transcoder/form.rb in httpx-0.20.5 vs lib/httpx/transcoder/form.rb in httpx-0.21.0
- old
+ new
@@ -34,10 +34,10 @@
end
module Decoder
module_function
- def call(response, _)
+ def call(response, *)
URI.decode_www_form(response.to_s).each_with_object({}) do |(field, value), params|
HTTPX::Transcoder.normalize_query(params, field, value, PARAM_DEPTH_LIMIT)
end
end
end