Skip to content

Commit

Permalink
make all key and values for parseRequestParameterMap to lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
lovesh-ap committed Dec 19, 2024
1 parent 7253b66 commit 66d6c05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ private static Map<String, Set<String>> parseRequestParameterMap(Map<String, Str
if(requestBodyParameters.containsKey(key)){
requestBodyParameters.get(key).addAll(valuesList);
} else {
requestBodyParameters.put(key, valuesList);
requestBodyParameters.put(StringUtils.lowerCase(key), valuesList);
}
}
return requestBodyParameters;
Expand Down

0 comments on commit 66d6c05

Please sign in to comment.