Skip to content

Commit

Permalink
Merge pull request #27 from leonazava/4255
Browse files Browse the repository at this point in the history
[4255] - searchig for + resulted in an error - fixed
  • Loading branch information
carinadues authored Jun 9, 2022
2 parents 53ec626 + dd8693f commit 0ca0684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin/PersistedQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ protected function processVariables($args): array
$variables = [];

foreach ($args as $key => $value) {
$variables[$key] = json_decode(urldecode($value), true);
$variables[$key] = json_decode(rawurldecode($value), true);
}

return $variables;
Expand Down

0 comments on commit 0ca0684

Please sign in to comment.