mirror of
https://github.com/Jackett/Jackett
synced 2024-12-29 11:17:22 +00:00
divxtotal: fix download link (#8414)
This commit is contained in:
parent
877af5c3c8
commit
fe252faf1d
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ namespace Jackett.Common.Indexers
|
|||
var searchResultParser = new HtmlParser();
|
||||
var doc = searchResultParser.ParseDocument(result.Content);
|
||||
|
||||
var onclick = doc.QuerySelector("a[onclick*=\"/download/torrent\"]")
|
||||
var onclick = doc.QuerySelector("a[onclick*=\"/torrent\"]")
|
||||
.GetAttribute("onclick");
|
||||
downloadUrl = OnclickToDownloadLink(onclick);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue