From 14e8377232adb3b92a84bb797915914bbbd75309 Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Tue, 21 Jul 2015 17:49:30 -0700 Subject: recurse for arrays in `normalize_encode_params` this just pushes the conditional in to the case / when so we can switch to method dispatch later --- actionpack/lib/action_dispatch/http/parameters.rb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'actionpack/lib/action_dispatch') diff --git a/actionpack/lib/action_dispatch/http/parameters.rb b/actionpack/lib/action_dispatch/http/parameters.rb index c2f05ecc86..b3633015b5 100644 --- a/actionpack/lib/action_dispatch/http/parameters.rb +++ b/actionpack/lib/action_dispatch/http/parameters.rb @@ -38,16 +38,14 @@ module ActionDispatch # def normalize_encode_params(params) case params + when Array + params.map! { |el| normalize_encode_params(el) } when Hash if params.has_key?(:tempfile) UploadedFile.new(params) else params.each_with_object({}) do |(key, val), new_hash| - new_hash[key] = if val.is_a?(Array) - val.map! { |el| normalize_encode_params(el) } - else - normalize_encode_params(val) - end + new_hash[key] = normalize_encode_params(val) end.with_indifferent_access end else -- cgit v1.2.3