mirror of
https://github.com/Jackett/Jackett
synced 2025-02-27 08:32:56 +00:00
nyaasi: handler empty seeders/leechers/grabs. resolves #6587
This commit is contained in:
parent
1afc082bb1
commit
68b9941d11
1 changed files with 26 additions and 5 deletions
|
@ -125,12 +125,33 @@
|
||||||
- name: dateparse
|
- name: dateparse
|
||||||
args: "2006-01-02 15:04 -07"
|
args: "2006-01-02 15:04 -07"
|
||||||
seeders:
|
seeders:
|
||||||
selector: td:nth-child(6)
|
selector: td:nth-child(6):empty
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: append
|
||||||
|
args: 0
|
||||||
|
seeders:
|
||||||
|
selector: td:nth-child(6):not(:empty)
|
||||||
|
optional: true
|
||||||
leechers:
|
leechers:
|
||||||
selector: td:nth-child(7)
|
selector: td:nth-child(7):empty
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: append
|
||||||
|
args: 0
|
||||||
|
leechers:
|
||||||
|
selector: td:nth-child(7):not(:empty)
|
||||||
|
optional: true
|
||||||
grabs:
|
grabs:
|
||||||
selector: td:nth-child(8)
|
selector: td:nth-child(8):empty
|
||||||
|
optional: true
|
||||||
|
filters:
|
||||||
|
- name: append
|
||||||
|
args: 0
|
||||||
|
grabs:
|
||||||
|
selector: td:nth-child(8):not(:empty)
|
||||||
|
optional: true
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
text: "0"
|
text: 0
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
text: "1"
|
text: 1
|
||||||
|
|
Loading…
Reference in a new issue