mirror of
https://github.com/Jackett/Jackett
synced 2024-12-29 11:17:22 +00:00
cinecalidad: fix parsing error (#8470)
This commit is contained in:
parent
ee3cde5cb3
commit
cb24d1aea7
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue