Fix AvistaZ exception

This commit is contained in:
kaso17
2016-09-16 19:25:53 +02:00
parent 1ad0e93d01
commit 9c7ce468ee

View File

@@ -91,7 +91,7 @@ namespace Jackett.Indexers
try
{
CQ dom = response.Content;
var rows = dom["table > tbody > tr"];
var rows = dom["table:has(thead) > tbody > tr"];
foreach (var row in rows)
{
CQ qRow = row.Cq();