Skip to content

Commit 8870cf2

Browse files
committed
#8615: REST API unable to make requests with slash (/) in SKU
1 parent 3776684 commit 8870cf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Webapi/Model/UrlDecoder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function decodeParams(array $params)
2222
{
2323
foreach ($params as &$param) {
2424
if (is_array($param)) {
25-
$this->decodeParams($param);
25+
$param = $this->decodeParams($param);
2626
} else {
2727
if ($param !== null && is_string($param)) {
2828
$param = rawurldecode($param);

0 commit comments

Comments
 (0)