Fixed: Book title should not include the series

This commit is contained in:
ta264
2020-08-05 22:38:35 +01:00
parent 46c0e3c481
commit dbba39c487

View File

@@ -583,7 +583,7 @@ namespace NzbDrone.Core.MetadataSource.Goodreads
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 },