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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ public void Clean()
{
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();