mirror of https://github.com/Jackett/Jackett
zooqle: fix seeders and leechers (#1867)
This commit is contained in:
parent
11ebe34f55
commit
ec7a2d049c
|
@ -71,13 +71,21 @@
|
|||
- name: replace
|
||||
args: ["– N/A –", "0 Bytes"]
|
||||
seeders:
|
||||
# seeders can be missing
|
||||
optional: true
|
||||
selector: td:nth-child(6) div div:first-child
|
||||
selector: td:nth-child(6) div
|
||||
attribute: title
|
||||
filters:
|
||||
- name: split
|
||||
args: [" ", 1]
|
||||
- name: replace
|
||||
args: [",", ""]
|
||||
leechers:
|
||||
# leechers can be missing
|
||||
optional: true
|
||||
selector: td:nth-child(6) div div:nth-child(2)
|
||||
selector: td:nth-child(6) div
|
||||
attribute: title
|
||||
filters:
|
||||
- name: split
|
||||
args: [" ", 4]
|
||||
- name: replace
|
||||
args: [",", ""]
|
||||
downloadvolumefactor:
|
||||
text: "0"
|
||||
uploadvolumefactor:
|
||||
|
|
Loading…
Reference in New Issue