Fixed: Don't store seasons from import list items in database

Closes #6555
This commit is contained in:
Mark McDowall 2024-02-27 07:20:23 -08:00 committed by Mark McDowall
parent 1f97679868
commit fb6fc568c5
1 changed files with 2 additions and 1 deletions

View File

@ -82,7 +82,8 @@ namespace NzbDrone.Core.Datastore
.Ignore(i => i.Enable);
Mapper.Entity<ImportListItemInfo>("ImportListItems").RegisterModel()
.Ignore(i => i.ImportList);
.Ignore(i => i.ImportList)
.Ignore(i => i.Seasons);
Mapper.Entity<NotificationDefinition>("Notifications").RegisterModel()
.Ignore(x => x.ImplementationName)