mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 07:10:44 +00:00
Downloadville: fix definition for users without wait time
This commit is contained in:
parent
b6cf6c4e16
commit
76dd662fe3
1 changed files with 6 additions and 6 deletions
|
@ -206,24 +206,24 @@
|
|||
filters:
|
||||
- name: querystring
|
||||
args: "category"
|
||||
date:
|
||||
selector: td:nth-of-type(5)
|
||||
date: # some users will have a extra wait time column before the bookmark column, so use last-of-type
|
||||
selector: td:nth-last-of-type(10)
|
||||
filters:
|
||||
- name: append
|
||||
args: " -04:00"
|
||||
- name: dateparse
|
||||
args: "02/01/2006 15:04:05 -07:00"
|
||||
seeders:
|
||||
selector: td:nth-of-type(7)
|
||||
selector: td:nth-last-of-type(8)
|
||||
leechers:
|
||||
selector: td:nth-of-type(8)
|
||||
selector: td:nth-last-of-type(7)
|
||||
grabs:
|
||||
selector: td:nth-of-type(9)
|
||||
selector: td:nth-last-of-type(6)
|
||||
filters:
|
||||
- name: replace
|
||||
args: ["---", "0"]
|
||||
size:
|
||||
selector: td:nth-of-type(11)
|
||||
selector: td:nth-last-of-type(4)
|
||||
downloadvolumefactor:
|
||||
case:
|
||||
img[src="images/freeleech.gif"]: "0"
|
||||
|
|
Loading…
Reference in a new issue