diff --git a/src/Jackett.Common/Definitions/blutopia-api.yml b/src/Jackett.Common/Definitions/blutopia-api.yml index 56104de67..14f368816 100644 --- a/src/Jackett.Common/Definitions/blutopia-api.yml +++ b/src/Jackett.Common/Definitions/blutopia-api.yml @@ -59,6 +59,10 @@ search: type: json attribute: attributes + keywordsfilters: + - name: re_replace + args: ["\\.", " "] + rows: selector: data count: diff --git a/src/Jackett.Common/Definitions/blutopia.yml b/src/Jackett.Common/Definitions/blutopia.yml index a477ae545..f835ed3d5 100644 --- a/src/Jackett.Common/Definitions/blutopia.yml +++ b/src/Jackett.Common/Definitions/blutopia.yml @@ -90,6 +90,10 @@ search: page: 1 free: "{{ if .Config.freeleech }}1{{ else }}{{ end }}" + keywordsfilters: + - name: re_replace + args: ["\\.", " "] + rows: selector: table > tbody > tr diff --git a/src/Jackett.Common/Definitions/crazyhd.yml b/src/Jackett.Common/Definitions/crazyhd.yml index da36c8b5c..4f63295da 100644 --- a/src/Jackett.Common/Definitions/crazyhd.yml +++ b/src/Jackett.Common/Definitions/crazyhd.yml @@ -144,6 +144,10 @@ search: category: "{{ if .Categories }}{{ range .Categories }}{{.}};{{end}}{{ else }}0{{ end }}" search: "{{ .Keywords }}" + keywordsfilters: + - name: re_replace + args: ["\\.", " "] + rows: selector: div.inf-table-row diff --git a/src/Jackett.Common/Definitions/potuk.yml b/src/Jackett.Common/Definitions/potuk.yml index f083aa053..3da91aa48 100644 --- a/src/Jackett.Common/Definitions/potuk.yml +++ b/src/Jackett.Common/Definitions/potuk.yml @@ -121,6 +121,10 @@ search: - path: "index.php?torrents/&freeleech={{ if .Config.freeleech }}1{{ else }}{{ end }}&filename={{ .Keywords }}" # imdb and tmdb not supported + keywordsfilters: + - name: re_replace + args: ["\\.", " "] + rows: selector: table.dataList-table > tbody.normal-torrents > tr diff --git a/src/Jackett.Common/Definitions/uhdbits.yml b/src/Jackett.Common/Definitions/uhdbits.yml index 7f20df120..bc26953c6 100644 --- a/src/Jackett.Common/Definitions/uhdbits.yml +++ b/src/Jackett.Common/Definitions/uhdbits.yml @@ -81,7 +81,10 @@ search: order_way: "{{ .Config.type }}" action: advanced searchsubmit: 1 + keywordsfilters: + - name: re_replace + args: ["\\.", " "] # if searching for season packs switch S01 to season 1 #10423 - name: re_replace args: ["(?i)(S)(\\d{1,3})$", "season $2"]