Results 2 comments of Pat Rocchio

It looks like the problem is coming from the way the parameters are being permitted in param_set.rb ```ruby filterrific_params = filterrific_params.permit(model_class.filterrific_available_filters).to_h.stringify_keys ``` This line permits the available filters but does...

Updated the initialize method to be able to properly permit parameters with arrays or hashes. Went off of pull request #115 which fixes another issue with permitting parameters #114 ```ruby...