mirror of https://github.com/Jackett/Jackett
femdomcult: fix torrents without date (#10434)
This commit is contained in:
parent
92f7277cb1
commit
dda3f033aa
|
@ -82,8 +82,7 @@ search:
|
||||||
title: "{{ .Keywords }}"
|
title: "{{ .Keywords }}"
|
||||||
order_by: "{{ .Config.sort }}"
|
order_by: "{{ .Config.sort }}"
|
||||||
order_way: "{{ .Config.type }}"
|
order_way: "{{ .Config.type }}"
|
||||||
action: basic
|
action: advanced
|
||||||
searchsubmit: 1
|
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
# exclude redbar torrents
|
# exclude redbar torrents
|
||||||
|
@ -117,9 +116,12 @@ search:
|
||||||
args: ["/static/common/noartwork/noimage.png", ""]
|
args: ["/static/common/noartwork/noimage.png", ""]
|
||||||
files:
|
files:
|
||||||
selector: td:nth-child(3)
|
selector: td:nth-child(3)
|
||||||
|
date: # some torrents have "Never" date
|
||||||
|
text: 20 years ago
|
||||||
date:
|
date:
|
||||||
selector: td:nth-child(5) > span
|
selector: td:nth-child(5) > span
|
||||||
attribute: title
|
attribute: title
|
||||||
|
optional: true
|
||||||
filters:
|
filters:
|
||||||
- name: append
|
- name: append
|
||||||
args: " +00:00" # auto adjusted by site account profile
|
args: " +00:00" # auto adjusted by site account profile
|
||||||
|
|
Loading…
Reference in New Issue