mirror of
https://github.com/Readarr/Readarr
synced 2026-01-19 05:54:06 +01:00
Fixed: Adding book from list
This commit is contained in:
parent
d6170dbfed
commit
8c50b866ff
1 changed files with 3 additions and 0 deletions
|
|
@ -129,6 +129,9 @@ private Book AddSkyhookData(Book newBook)
|
|||
newBook.Editions.Value.ForEach(x => x.Monitored = false);
|
||||
newBook.Editions.Value.Single(x => x.ForeignEditionId == editionId).Monitored = true;
|
||||
|
||||
var metadata = tuple.Item3.FirstOrDefault(x => x.ForeignAuthorId == tuple.Item1);
|
||||
newBook.AuthorMetadata = metadata;
|
||||
|
||||
return newBook;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue