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

Closes #6555
pull/6556/head
Mark McDowall 3 months ago
parent b34e0f8259
commit 383081d8f2

@ -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)

Loading…
Cancel
Save