mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 15:21:06 +00:00
Switch anidex to use to torrent link vs magnet link (#1356)
@kaso17 FYI I found out today that anidex does not always have a magnet link corresponding to returned search results. As a result it is more reliable to use the torrent link instead of the magnet link that my definition currently uses. To do this one just needs to change the download selector from `td:nth-child(6) > a` to `td:nth-child(5) > a`.
This commit is contained in:
parent
3426e66b3b
commit
0fad901ecb
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@
|
|||
selector: td:nth-child(3) > a.torrent
|
||||
attribute: href
|
||||
download:
|
||||
selector: td:nth-child(6) > a
|
||||
selector: td:nth-child(5) > a
|
||||
attribute: href
|
||||
size:
|
||||
selector: td:nth-child(7)
|
||||
|
|
Loading…
Reference in a new issue