From c3c43145b8951b511790287ef3cd872f75c55c89 Mon Sep 17 00:00:00 2001 From: "Brian J. Cardiff" Date: Sat, 4 Apr 2020 15:26:05 -0300 Subject: [PATCH] Comply exhaustive case check (#560) --- src/kemal/param_parser.cr | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/kemal/param_parser.cr b/src/kemal/param_parser.cr index 92c3112..5d87ba0 100644 --- a/src/kemal/param_parser.cr +++ b/src/kemal/param_parser.cr @@ -97,6 +97,8 @@ module Kemal end when Array @json["_json"] = json + else + # Ignore non Array or Hash json values end end