mirror of
https://github.com/Readarr/Readarr
synced 2025-12-28 11:13:22 +01:00
Fixed: Book title should not include the series
This commit is contained in:
parent
46c0e3c481
commit
dbba39c487
1 changed files with 1 additions and 1 deletions
|
|
@ -583,7 +583,7 @@ private static Book MapBook(BookResource resource)
|
|||
var book = new Book
|
||||
{
|
||||
ForeignBookId = resource.Work.Id.ToString(),
|
||||
Title = (resource.Work.OriginalTitle ?? resource.Title).CleanSpaces(),
|
||||
Title = (resource.Work.OriginalTitle ?? resource.TitleWithoutSeries).CleanSpaces(),
|
||||
TitleSlug = resource.Id.ToString(),
|
||||
ReleaseDate = resource.Work.OriginalPublicationDate ?? resource.PublicationDate,
|
||||
Ratings = new Ratings { Votes = resource.Work.RatingsCount, Value = resource.Work.AverageRating },
|
||||
|
|
|
|||
Loading…
Reference in a new issue