mirror of
https://github.com/Readarr/Readarr
synced 2025-12-25 01:36:41 +01:00
Fixed: Search with edition title
This commit is contained in:
parent
16e04041a9
commit
3575ca50da
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ public List<DownloadDecision> BookSearch(Book book, bool missingOnly, bool userI
|
|||
|
||||
var searchSpec = Get<BookSearchCriteria>(author, new List<Book> { book }, userInvokedSearch, interactiveSearch);
|
||||
|
||||
searchSpec.BookTitle = book.Title;
|
||||
searchSpec.BookTitle = book.Editions.Value.SingleOrDefault(x => x.Monitored).Title;
|
||||
|
||||
// searchSpec.BookIsbn = book.Isbn13;
|
||||
if (book.ReleaseDate.HasValue)
|
||||
|
|
|
|||
Loading…
Reference in a new issue