mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-28 08:58:41 +02:00
Fixed: Don't store seasons from import list items in database
Closes #6555
This commit is contained in:
parent
1f97679868
commit
fb6fc568c5
@ -82,7 +82,8 @@ public static void Map()
|
||||
.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…
Reference in New Issue
Block a user