mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
filmeshdtorrent: fix row selector to prevent invalid URI. resolves #15718
This commit is contained in:
@@ -85,7 +85,7 @@ namespace Jackett.Common.Indexers.Definitions
|
||||
|
||||
var parser = new HtmlParser();
|
||||
var dom = parser.ParseDocument(indexerResponse.Content);
|
||||
var rows = dom.QuerySelectorAll("div.item");
|
||||
var rows = dom.QuerySelectorAll("div.item:has(a[title])");
|
||||
|
||||
foreach (var row in rows)
|
||||
{
|
||||
|
Reference in New Issue
Block a user