mirror of
https://github.com/Readarr/Readarr
synced 2026-01-10 01:24:08 +01:00
Fixed: Mapping Author GR ID from import lists to AuthorGoodReadsId
This commit is contained in:
parent
c67f67109e
commit
9005860899
1 changed files with 1 additions and 1 deletions
|
|
@ -184,7 +184,7 @@ private void MapBookReport(ImportListItemInfo report)
|
|||
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…
Reference in a new issue