mirror of
https://github.com/Jackett/Jackett
synced 2025-02-22 06:10:49 +00:00
yggtorrent: fix anime hack breaking season search. resolves #6172
This commit is contained in:
parent
56b2b8f1bc
commit
f7e69095f7
2 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@
|
|||
- name: re_replace #Full season S 1-9
|
||||
args: ["(.*)[sS]([1-9])$", "$1 S0$2"]
|
||||
- name: re_replace #Full season S >= 10
|
||||
args: ["(.*)[sS]([1-9][0-9])$", "$1 S0$2"]
|
||||
args: ["(.*)[sS]([1-9][0-9])$", "$1 S$2"]
|
||||
# END ANIME HACK
|
||||
- name: replace
|
||||
args: ["\"", ""]
|
||||
|
|
|
@ -194,7 +194,7 @@
|
|||
- name: re_replace #Full season S 1-9
|
||||
args: ["(.*)[sS]([1-9])$", "$1 S0$2"]
|
||||
- name: re_replace #Full season S >= 10
|
||||
args: ["(.*)[sS]([1-9][0-9])$", "$1 S0$2"]
|
||||
args: ["(.*)[sS]([1-9][0-9])$", "$1 S$2"]
|
||||
# END ANIME HACK
|
||||
- name: replace
|
||||
args: ["\"", ""]
|
||||
|
|
Loading…
Reference in a new issue