Skip to content

Commit

Permalink
Merge pull request #3011 from plentymarkets/fix/query_params_encode_p…
Browse files Browse the repository at this point in the history
…refix

add missing prefix encoding
  • Loading branch information
felixgehrmann authored Sep 13, 2021
2 parents c35167e + 9ff819e commit 54c08a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/src/app/services/UrlService.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export function encodeParams(params, prefix)
{
return encodeURIComponent(params);
}
return prefix + "=" + encodeURIComponent(params);
return encodeURIComponent(prefix) + "=" + encodeURIComponent(params);
}

export function setUrlByItem(itemData, keepVariationId)
Expand Down

0 comments on commit 54c08a8

Please sign in to comment.