mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-01-10 10:47:02 +00:00
Fixed: Null reference error importing some books
This commit is contained in:
@@ -133,7 +133,7 @@ namespace NzbDrone.Core.MediaFiles.BookImport.Identification
|
||||
candidateReleases = _candidateService.GetRemoteCandidates(localBookRelease, idOverrides);
|
||||
if (!config.AddNewAuthors)
|
||||
{
|
||||
candidateReleases = candidateReleases.Where(x => x.Edition.Book.Value.Id > 0);
|
||||
candidateReleases = candidateReleases.Where(x => x.Edition.Book.Value.Id > 0 && x.Edition.Book.Value.AuthorId > 0);
|
||||
}
|
||||
|
||||
usedRemote = true;
|
||||
|
||||
Reference in New Issue
Block a user