mirror of
https://github.com/Jackett/Jackett.git
synced 2025-12-15 19:46:12 +01:00
sharewood-api: simplify search term removal of invalid characters
Better support for searches like `L'aile ou la cuisse` which would return results containing both `L'aile ou la cuisse` and `L aile ou la cuisse`, since some releases seem to have the apostrophe replaced with a space. Resolves #13834
This commit is contained in:
@@ -133,7 +133,7 @@ search:
|
||||
|
||||
keywordsfilters:
|
||||
- name: re_replace
|
||||
args: ["[\\s\\:\\-\\/\\|\\(\\).,]+", " "]
|
||||
args: ["[^\\w]+", " "]
|
||||
|
||||
rows:
|
||||
selector: $
|
||||
|
||||
Reference in New Issue
Block a user