mirror of
https://github.com/Jackett/Jackett
synced 2025-01-03 13:46:10 +00:00
hd-torrents: improve response parsing (#11367)
This commit is contained in:
parent
aabb23cf53
commit
6f51633185
1 changed files with 3 additions and 0 deletions
|
@ -159,6 +159,9 @@ namespace Jackett.Common.Indexers
|
|||
var rows = dom.QuerySelectorAll("table.mainblockcontenttt tr:has(td.mainblockcontent)");
|
||||
foreach (var row in rows.Skip(1))
|
||||
{
|
||||
if (row.Children.Length == 2)
|
||||
continue; // fix bug with search: cohen
|
||||
|
||||
var mainLink = row.Children[2].QuerySelector("a");
|
||||
var title = mainLink.TextContent;
|
||||
var details = new Uri(SiteLink + mainLink.GetAttribute("href"));
|
||||
|
|
Loading…
Reference in a new issue