mirror of
https://github.com/Jackett/Jackett
synced 2025-01-19 14:10:07 +00:00
torrentz2: Fix sorting of torrents (#7114)
This commit is contained in:
parent
9f03831321
commit
163b162b2d
1 changed files with 4 additions and 3 deletions
|
@ -47,7 +47,7 @@
|
||||||
"adult tattoo": XXX
|
"adult tattoo": XXX
|
||||||
"other": Other
|
"other": Other
|
||||||
"images": Other
|
"images": Other
|
||||||
|
|
||||||
|
|
||||||
modes:
|
modes:
|
||||||
search: [q]
|
search: [q]
|
||||||
|
@ -72,13 +72,14 @@
|
||||||
label: Sort requested from site
|
label: Sort requested from site
|
||||||
default: "A"
|
default: "A"
|
||||||
options:
|
options:
|
||||||
|
"_": "peers"
|
||||||
|
"N": "rating"
|
||||||
"A": "created"
|
"A": "created"
|
||||||
"P": "seeders"
|
|
||||||
"S": "size"
|
"S": "size"
|
||||||
|
|
||||||
search:
|
search:
|
||||||
paths:
|
paths:
|
||||||
- path: "{{if .Config.filter-verified }}verified{{else}}search{{end}}{{ .Config.sort }}"
|
- path: "{{if .Config.filter-verified }}verified{{else}}search{{end}}{{ re_replace .Config.sort \"_\" \"\" }}"
|
||||||
inputs:
|
inputs:
|
||||||
f: "{{ if .Keywords }}title: {{ .Keywords }}{{else}}{{end}}"
|
f: "{{ if .Keywords }}title: {{ .Keywords }}{{else}}{{end}}"
|
||||||
safe: "{{ if .Config.filter-safe }}1{{else}}0{{end}}"
|
safe: "{{ if .Config.filter-safe }}1{{else}}0{{end}}"
|
||||||
|
|
Loading…
Reference in a new issue