mirror of https://github.com/Jackett/Jackett
Fixes for 3 French trackers (#1736)
Non-critical fixes: - NextTorrent and Zetorrents: error in logs when no results were returned from search - T411v2: improved selector to disregard VPN add in search results
This commit is contained in:
parent
44d9b3ecc8
commit
04995f1a10
|
@ -24,7 +24,7 @@
|
|||
search:
|
||||
path: "recherche/{{ .Query.Keywords }}"
|
||||
rows:
|
||||
selector: div.listing-torrent > table tbody tr
|
||||
selector: div.listing-torrent > table tbody tr:has(a)
|
||||
fields:
|
||||
site_date:
|
||||
selector: td:nth-child(1) a
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
search:
|
||||
path: /torrents/search/?search={{ .Keywords}}
|
||||
rows:
|
||||
selector: tr.isItemDesk
|
||||
selector: tr.isItem.isItemDesk
|
||||
fields:
|
||||
category:
|
||||
selector: td.m-cat > a
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
search:
|
||||
path: "/recherche/{{ .Query.Keywords }}"
|
||||
rows:
|
||||
selector: div.content-list-torrent > table tbody tr
|
||||
selector: div.content-list-torrent > table tbody tr:has(a)
|
||||
fields:
|
||||
site_date:
|
||||
selector: td:nth-child(1) a
|
||||
|
|
Loading…
Reference in New Issue