Skip to content

Commit 9be7031

Browse files
committed
fix: serializer url enconding
1 parent 2f1a292 commit 9be7031

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Libs/Utils/JsonUtils.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ public static function encodeUrl(?string $url):?string{
6666
$url = str_replace("%3D","=", $url);
6767
$url = str_replace("%3F","?", $url);
6868
$url = str_replace("%26","&", $url);
69+
$url = str_replace("%2B","+", $url);
6970
return $url;
7071
}
7172

0 commit comments

Comments
 (0)