Fixed: List Import additions when book / author lookup required

This commit is contained in:
bakerboy448 2022-07-29 11:31:51 -05:00
parent 20b1f41ac1
commit f7bf1e243d

View file

@ -183,12 +183,13 @@ private void MapBookReport(ImportListItemInfo report)
return;
}
_logger.Trace($"Mapped {report.EditionGoodreadsId} to [{mappedBook.WorkId}] {mappedBook.BookTitleBare}");
_logger.Trace($"Mapped Book {report.Book} by Author {report.Author} to [{mappedBook.WorkId}] {mappedBook.BookTitleBare}");
report.BookGoodreadsId = mappedBook.WorkId.ToString();
report.Book = mappedBook.BookTitleBare;
report.Author ??= mappedBook.Author.Name;
report.AuthorGoodreadsId ??= mappedBook.Author.Id.ToString();
report.EditionGoodreadsId = mappedBook.BookId.ToString();
}
}
@ -196,6 +197,7 @@ private void ProcessBookReport(ImportListDefinition importList, ImportListItemIn
{
if (report.EditionGoodreadsId == null)
{
_logger.Trace("Skipping report [{0}] due to missing EditionGoodreadsId", report.Book);
return;
}