diff options
Diffstat (limited to 'app/Models/Search.php')
| -rw-r--r-- | app/Models/Search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Search.php b/app/Models/Search.php index 4a006c2d0..a887ec2f7 100644 --- a/app/Models/Search.php +++ b/app/Models/Search.php @@ -94,7 +94,7 @@ class FreshRSS_Search implements \Stringable { public function __construct(string $input) { $input = self::cleanSearch($input); $input = self::unescape($input); - $input = FreshRSS_BooleanSearch::unescapeRegexParentheses($input); + $input = FreshRSS_BooleanSearch::unescapeLiteralParentheses($input); $this->raw_input = $input; $input = $this->parseNotEntryIds($input); |
