diff --git a/src/Jackett.Common/Indexers/RuTracker.cs b/src/Jackett.Common/Indexers/RuTracker.cs index 509d991d5..136da8110 100644 --- a/src/Jackett.Common/Indexers/RuTracker.cs +++ b/src/Jackett.Common/Indexers/RuTracker.cs @@ -1470,6 +1470,9 @@ namespace Jackett.Common.Indexers queryCollection.Add("nm", searchString); } + if (query.HasSpecifiedCategories) + queryCollection.Add("f", string.Join(",", MapTorznabCapsToTrackers(query))); + var searchUrl = SearchUrl + "?" + queryCollection.GetQueryString(); return searchUrl; }