mirror of
https://github.com/Jackett/Jackett
synced 2025-02-21 13:56:57 +00:00
magico: Use \w and \d to respect non latin characters (#6200)
Previous setting was replacing all non latin characters. Since this is a greek tracker this is a major pain
This commit is contained in:
parent
00f26031d0
commit
13de466a38
1 changed files with 1 additions and 1 deletions
|
@ -128,7 +128,7 @@
|
|||
- name: replace # use this as a workaround till #893 is implemented
|
||||
args: ["Greys Anatomy", "Grey's Anatomy"]
|
||||
- name: re_replace
|
||||
args: ["[^a-zA-Z0-9]+", "%25"]
|
||||
args: ["[^\\w\\d]+", "%25"]
|
||||
inputs:
|
||||
p: "torrents"
|
||||
pid: "32"
|
||||
|
|
Loading…
Reference in a new issue