Fixed: Missed list monitor type rename

This commit is contained in:
ta264
2020-05-20 22:05:01 +01:00
parent 2cb54cdc83
commit 22679d6187
3 changed files with 8 additions and 8 deletions

View File

@@ -19,7 +19,7 @@ namespace NzbDrone.Core.ImportLists
public enum ImportListMonitorType
{
None,
SpecificAlbum,
EntireArtist
SpecificBook,
EntireAuthor
}
}

View File

@@ -221,7 +221,7 @@ namespace NzbDrone.Core.ImportLists
},
};
if (importList.ShouldMonitor == ImportListMonitorType.SpecificAlbum)
if (importList.ShouldMonitor == ImportListMonitorType.SpecificBook)
{
toAdd.Author.Value.AddOptions.BooksToMonitor.Add(toAdd.ForeignBookId);
}