From 6de5e7b929c2750b0ebdff6a453ad8643b72bf12 Mon Sep 17 00:00:00 2001 From: Anton Maminov Date: Mon, 5 Nov 2018 21:51:22 +0200 Subject: [PATCH] Fix ParamParser files memoization (#503) --- src/kemal/param_parser.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kemal/param_parser.cr b/src/kemal/param_parser.cr index 4ae00a2..7dfb52b 100644 --- a/src/kemal/param_parser.cr +++ b/src/kemal/param_parser.cr @@ -6,7 +6,7 @@ module Kemal URL_ENCODED_FORM = "application/x-www-form-urlencoded" APPLICATION_JSON = "application/json" MULTIPART_FORM = "multipart/form-data" - PARTS = %w(url query body json) + PARTS = %w(url query body json files) # :nodoc: alias AllParamTypes = Nil | String | Int64 | Float64 | Bool | Hash(String, JSON::Any) | Array(JSON::Any) getter files