beyondhd: add andmatch #4828

This commit is contained in:
Garfield69 2019-03-10 08:08:42 +13:00
parent 1cd05963df
commit 689568d147
1 changed files with 2 additions and 0 deletions

View File

@ -145,6 +145,8 @@ namespace Jackett.Common.Indexers
var descCol = row.ChildElements.ElementAt(3);
var qCommentLink = descCol.FirstChild.Cq();
release.Title = qCommentLink.Text();
if ((query.ImdbID == null || !TorznabCaps.SupportsImdbSearch) && !query.MatchQueryStringAND(release.Title))
continue;
release.Comments = new Uri(SiteLink + "/" + qCommentLink.Attr("href"));
release.Guid = release.Comments;
release.Link = new Uri($"{SiteLink}download.php?torrent={torrentId}");