mirror of
https://github.com/Readarr/Readarr
synced 2025-12-31 12:42:25 +01:00
Fixed: Error fetching results in Add New
This commit is contained in:
parent
7a5297b2a6
commit
6e398b3a57
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ public static BookResource ToResource(this Book model)
|
|||
PageCount = selectedEdition?.PageCount ?? 0,
|
||||
Genres = model.Genres,
|
||||
Title = selectedEdition?.Title ?? model.Title,
|
||||
SeriesTitle = model.SeriesLinks.Value.Select(x => x.Series.Value.Title + (x.Position.IsNotNullOrWhiteSpace() ? $" #{x.Position}" : string.Empty)).ConcatToString("; "),
|
||||
SeriesTitle = model.SeriesLinks?.Value?.Select(x => x.Series.Value.Title + (x.Position.IsNotNullOrWhiteSpace() ? $" #{x.Position}" : string.Empty)).ConcatToString("; "),
|
||||
Disambiguation = selectedEdition?.Disambiguation,
|
||||
Overview = selectedEdition?.Overview,
|
||||
Images = selectedEdition?.Images ?? new List<MediaCover>(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue