mirror of
https://github.com/Jackett/Jackett
synced 2025-01-02 13:16:16 +00:00
ettv: fix #2052 so that 'sortby added' returns proper results
the default search for ettv is to return 'any words' matched, which when paired with 'sortby added' meant the top resutls were not useful. now we prefix the keyworks with '+' and urlencodes them, ensuring that 'all words' matched is returned.
This commit is contained in:
parent
955aa2c9ec
commit
05b1895205
1 changed files with 4 additions and 2 deletions
|
@ -35,10 +35,12 @@
|
|||
path: torrents-search.php
|
||||
inputs:
|
||||
$raw: "{{range .Categories}}c{{.}}=1&{{end}}"
|
||||
search: "{{ .Query.Keywords }}"
|
||||
search: "{{ if .Keywords }}+{{else}}{{end}}{{ .Keywords }}"
|
||||
incldead: "1"
|
||||
order: desc
|
||||
sort: id
|
||||
order: desc
|
||||
keywordsfilters:
|
||||
- name: urlencode
|
||||
|
||||
rows:
|
||||
selector: div.myFrame-content > div > table > tbody > tr[class]
|
||||
|
|
Loading…
Reference in a new issue