mirror of
https://github.com/Jackett/Jackett
synced 2024-12-24 08:45:47 +00:00
Fix TV search for MoreThanTV (#970)
This commit is contained in:
parent
e7527ae786
commit
750f857fb7
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ namespace Jackett.Indexers
|
|||
|
||||
public async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuery query)
|
||||
{
|
||||
var isTv = Array.IndexOf(query.Categories, TorznabCatType.TV.ID) > -1;
|
||||
var isTv = TorznabCatType.QueryContainsParentCategory(query.Categories, TorznabCatType.TV.ID);
|
||||
var releases = new List<ReleaseInfo>();
|
||||
var searchQuery = query.GetQueryString();
|
||||
|
||||
|
|
Loading…
Reference in a new issue