Fixed: Cleanup of unused tags for Import lists

Fixes #1181
This commit is contained in:
Qstick
2021-08-12 20:50:44 -04:00
committed by GitHub
parent cf49404e13
commit 4b88cc5ea5

View File

@@ -19,7 +19,7 @@ namespace NzbDrone.Core.Housekeeping.Housekeepers
{
using (var mapper = _database.OpenConnection())
{
var usedTags = new[] { "Authors", "Notifications", "DelayProfiles", "ReleaseProfiles" }
var usedTags = new[] { "Authors", "Notifications", "DelayProfiles", "ReleaseProfiles", "ImportLists" }
.SelectMany(v => GetUsedTags(v, mapper))
.Distinct()
.ToArray();