Skip to content

Commit

Permalink
#8615: REST API unable to make requests with slash (/) in SKU
Browse files Browse the repository at this point in the history
  • Loading branch information
RomaKis committed Dec 15, 2017
1 parent 3776684 commit 8870cf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Webapi/Model/UrlDecoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function decodeParams(array $params)
{
foreach ($params as &$param) {
if (is_array($param)) {
$this->decodeParams($param);
$param = $this->decodeParams($param);
} else {
if ($param !== null && is_string($param)) {
$param = rawurldecode($param);
Expand Down

0 comments on commit 8870cf2

Please sign in to comment.