From cb24d1aea75689a1d46ac8a969c8122f3e2ecd06 Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Fri, 1 May 2020 18:32:23 +0200 Subject: [PATCH] cinecalidad: fix parsing error (#8470) --- src/Jackett.Common/Indexers/Cinecalidad.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jackett.Common/Indexers/Cinecalidad.cs b/src/Jackett.Common/Indexers/Cinecalidad.cs index f0787bf25..f1607e6a4 100644 --- a/src/Jackett.Common/Indexers/Cinecalidad.cs +++ b/src/Jackett.Common/Indexers/Cinecalidad.cs @@ -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