Skip to content

Commit 093106f

Browse files
AC-10541 - Web API Fix
1 parent e10f815 commit 093106f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/Webapi/Controller/Rest/InputParamsResolver.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,8 @@ public function getInputData()
141141
} else {
142142
$inputData = $this->request->getRequestData();
143143
}
144-
$this->filterInputData($inputData);
144+
145+
$inputData = $this->filterInputData($inputData);
145146
$this->validateParameters($serviceClassName, $serviceMethodName, array_keys($route->getParameters()));
146147

147148
return $this->paramsOverrider->override($inputData, $route->getParameters());

0 commit comments

Comments
 (0)