Skip to content

Commit

Permalink
Fix: Decode quotation marks to make exact search working
Browse files Browse the repository at this point in the history
  • Loading branch information
croitoruion authored and brusch committed Jan 17, 2022
1 parent 43c80c0 commit 5e72bf8
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -413,6 +413,7 @@ protected function filterQueryParam(string $query)
$query = '';
}

$query = str_replace('"', '"', $query);
$query = str_replace('%', '*', $query);
$query = str_replace('@', '#', $query);
$query = preg_replace("@([^ ])\-@", '$1 ', $query);
Expand Down

0 comments on commit 5e72bf8

Please sign in to comment.