mirror of
https://github.com/Readarr/Readarr
synced 2026-05-08 21:13:58 +02: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.BookGoodreadsId = remoteBook.ForeignBookId;
|
||||||
report.Book = remoteBook.Title;
|
report.Book = remoteBook.Title;
|
||||||
report.Author ??= remoteBook.AuthorMetadata.Value.Name;
|
report.Author ??= remoteBook.AuthorMetadata.Value.Name;
|
||||||
report.AuthorGoodreadsId ??= remoteBook.AuthorMetadata.Value.Name;
|
report.AuthorGoodreadsId ??= remoteBook.AuthorMetadata.Value.ForeignAuthorId;
|
||||||
}
|
}
|
||||||
catch (BookNotFoundException)
|
catch (BookNotFoundException)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue