mirror of
https://github.com/Jackett/Jackett
synced 2025-03-06 19:58:38 +00:00
exttorrents: fix second page url generation (#14139)
This commit is contained in:
parent
1b46239ea3
commit
50f8fc3371
1 changed files with 8 additions and 2 deletions
|
@ -106,8 +106,14 @@ download:
|
||||||
|
|
||||||
search:
|
search:
|
||||||
paths:
|
paths:
|
||||||
- path: "{{ if .Keywords }}search/?q={{ .Keywords }}&order={{ .Config.sort }}&sort={{ .Config.type }}{{ else }}latest/{{ end }}"
|
- path: "{{ if .Keywords }}search/{{ .Keywords }}/?order={{ .Config.sort }}&sort={{ .Config.type }}{{ else }}latest/{{ end }}"
|
||||||
- path: "{{ if .Keywords }}search/?q={{ .Keywords }}/2/&order={{ .Config.sort }}&sort={{ .Config.type }}{{ else }}latest/2/{{ end }}"
|
- path: "{{ if .Keywords }}search/{{ .Keywords }}/2/?order={{ .Config.sort }}&sort={{ .Config.type }}{{ else }}latest/2/{{ end }}"
|
||||||
|
|
||||||
|
keywordsfilters:
|
||||||
|
- name: tolower
|
||||||
|
- name: trim
|
||||||
|
- name: re_replace
|
||||||
|
args: ["[^\\w]+", "-"]
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
selector: table.table-striped > tbody > tr
|
selector: table.table-striped > tbody > tr
|
||||||
|
|
Loading…
Add table
Reference in a new issue