From 677d5d3374b9bf99d5fa2167e01b5a7da39270bf Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sat, 6 May 2023 20:11:17 +0300 Subject: [PATCH] Revert "Fixed: Indexer tags" This reverts commit 761a6a9136f7b973ebc83f49ebde87910195984e. --- src/NzbDrone.Core/Datastore/TableMapping.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Datastore/TableMapping.cs b/src/NzbDrone.Core/Datastore/TableMapping.cs index e43791951..94e077654 100644 --- a/src/NzbDrone.Core/Datastore/TableMapping.cs +++ b/src/NzbDrone.Core/Datastore/TableMapping.cs @@ -71,7 +71,8 @@ namespace NzbDrone.Core.Datastore .Ignore(i => i.Enable) .Ignore(i => i.Protocol) .Ignore(i => i.SupportsRss) - .Ignore(i => i.SupportsSearch); + .Ignore(i => i.SupportsSearch) + .Ignore(d => d.Tags); Mapper.Entity("ImportLists").RegisterModel() .Ignore(x => x.ImplementationName)