ilike2burnthing 2022-12-08 16:49:08 +00:00 committed by GitHub
parent 6ecb3f3931
commit 9006f3c330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 2 deletions

View File

@ -126,7 +126,7 @@ settings:
default: "<ol><li>From the same place you fetched the cookie,<li>Find <b>'user-agent:'</b> in the <b>Request Headers</b> section<li><b>Select</b> and <b>Copy</b> the whole user-agent string <i>(everything after 'user-agent: ')</i> and <b>Paste</b> here.</ol>"
- name: category
type: select
label: Catégorie
label: Category
default: all
options:
all: Tous
@ -220,6 +220,15 @@ search:
# END ANIME HACK
- name: replace
args: ["\"", ""]
# Replace - with space due to internal YGG Issues
- name: replace
args: ["-", " "]
# Replace / with space due to internal YGG Issues
- name: replace
args: ["/", " "]
# Replace ! with nothing for searches due to internal YGG issues reported on Radarr Discord
- name: replace
args: ["!", ""]
- name: replace
args: [" ", " "]
- name: trim

View File

@ -118,7 +118,7 @@ settings:
label: Password
- name: category
type: select
label: Catégorie
label: Category
default: all
options:
all: Tous
@ -230,6 +230,15 @@ search:
# END ANIME HACK
- name: replace
args: ["\"", ""]
# Replace - with space due to internal YGG Issues
- name: replace
args: ["-", " "]
# Replace / with space due to internal YGG Issues
- name: replace
args: ["/", " "]
# Replace ! with nothing for searches due to internal YGG issues reported on Radarr Discord
- name: replace
args: ["!", ""]
- name: replace
args: [" ", " "]
- name: trim