From e012eda0cf363a735fbc615f4992d59ef476de48 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Thu, 8 Jun 2023 00:23:58 +0300 Subject: [PATCH] Use the default IndexerCapabilities for TorrentRssIndexer --- .../Indexers/Definitions/TorrentRss/TorrentRssIndexer.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/TorrentRss/TorrentRssIndexer.cs b/src/NzbDrone.Core/Indexers/Definitions/TorrentRss/TorrentRssIndexer.cs index a9ccb4f32..717409395 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/TorrentRss/TorrentRssIndexer.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/TorrentRss/TorrentRssIndexer.cs @@ -79,10 +79,7 @@ namespace NzbDrone.Core.Indexers.Definitions.TorrentRss private IndexerCapabilities SetCapabilities() { - var caps = new IndexerCapabilities - { - SearchParams = new List(), - }; + var caps = new IndexerCapabilities(); caps.Categories.AddCategoryMapping(1, NewznabStandardCategory.Other);