From b17a78352583721b5cb50da6e0d302da302d4fab Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 24 Sep 2022 23:28:04 -0700 Subject: [PATCH] Fixed: Indexer tags (cherry picked from commit 6f5467e39e059bdfec0d7dd49485028195c38586) --- src/NzbDrone.Core/Datastore/TableMapping.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Datastore/TableMapping.cs b/src/NzbDrone.Core/Datastore/TableMapping.cs index f1554484d..096ec53b1 100644 --- a/src/NzbDrone.Core/Datastore/TableMapping.cs +++ b/src/NzbDrone.Core/Datastore/TableMapping.cs @@ -68,8 +68,7 @@ namespace NzbDrone.Core.Datastore .Ignore(i => i.Enable) .Ignore(i => i.Protocol) .Ignore(i => i.SupportsRss) - .Ignore(i => i.SupportsSearch) - .Ignore(d => d.Tags); + .Ignore(i => i.SupportsSearch); Mapper.Entity("ImportLists").RegisterModel() .Ignore(x => x.ImplementationName)