mirror of https://github.com/Jackett/Jackett
cinecalidad: fix parsing error (#8470)
This commit is contained in:
parent
ee3cde5cb3
commit
cb24d1aea7
|
@ -152,6 +152,8 @@ namespace Jackett.Common.Indexers
|
|||
foreach (var row in rows)
|
||||
{
|
||||
var qImg = row.QuerySelector("img");
|
||||
if (qImg == null)
|
||||
continue; // skip results without image
|
||||
var title = qImg.GetAttribute("title");
|
||||
if (!CheckTitleMatchWords(query.GetQueryString(), title))
|
||||
continue; // skip if it doesn't contain all words
|
||||
|
|
Loading…
Reference in New Issue