Fixed: Mapping Author GR ID from import lists to AuthorGoodReadsId

pull/3942/head v0.4.6.2711
gains goblin 3 weeks ago committed by bakerboy448
parent c67f67109e
commit 9005860899

@ -184,7 +184,7 @@ namespace NzbDrone.Core.ImportLists
report.BookGoodreadsId = remoteBook.ForeignBookId;
report.Book = remoteBook.Title;
report.Author ??= remoteBook.AuthorMetadata.Value.Name;
report.AuthorGoodreadsId ??= remoteBook.AuthorMetadata.Value.Name;
report.AuthorGoodreadsId ??= remoteBook.AuthorMetadata.Value.ForeignAuthorId;
}
catch (BookNotFoundException)
{

Loading…
Cancel
Save