1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-02-22 06:10:49 +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:
mrmaltgr 2019-10-18 21:12:17 +03:00 committed by garfield69
parent 00f26031d0
commit 13de466a38

View file

@ -128,7 +128,7 @@
- name: replace # use this as a workaround till #893 is implemented - name: replace # use this as a workaround till #893 is implemented
args: ["Greys Anatomy", "Grey's Anatomy"] args: ["Greys Anatomy", "Grey's Anatomy"]
- name: re_replace - name: re_replace
args: ["[^a-zA-Z0-9]+", "%25"] args: ["[^\\w\\d]+", "%25"]
inputs: inputs:
p: "torrents" p: "torrents"
pid: "32" pid: "32"