mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-09 05:22:09 +02:00
Fixed: (Anidex) Search with all categories selected
This commit is contained in:
parent
b3ddf2f9cd
commit
6897ed0b3f
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ private IEnumerable<IndexerRequest> GetPagedRequests(string term, int[] categori
|
|||
|
||||
var queryCats = _capabilities.Categories.MapTorznabCapsToTrackers(categories);
|
||||
|
||||
if (queryCats.Any())
|
||||
if (queryCats.Any() && _capabilities.Categories.GetTrackerCategories().Except(queryCats).Any())
|
||||
{
|
||||
searchUrl += "&id=" + string.Join(",", queryCats);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue