Fixed: Cleanup of unused tags for Import lists.

Fixes #4610

(cherry picked from commit 2f6409226a7338f63c923c221ae1efd47681ce9c)
This commit is contained in:
Taloth Saldono 2021-08-06 01:34:26 +02:00 committed by Robin Dadswell
parent 64045b0810
commit c93c87de30
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ namespace NzbDrone.Core.Housekeeping.Housekeepers
{
using (var mapper = _database.OpenConnection())
{
var usedTags = new[] { "Movies", "Notifications", "DelayProfiles", "Restrictions", "ImportLists" }
var usedTags = new[] { "Movies", "Notifications", "DelayProfiles", "Restrictions", "ImportLists", "Indexers" }
.SelectMany(v => GetUsedTags(v, mapper))
.Distinct()
.ToList();