mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-15 22:01:37 +00:00
Trim whitespace in certain string fields for better overview
Fixed ASIN-Search fixes #2605
This commit is contained in:
parent
ce7f81d676
commit
3b2b72c6da
5 changed files with 7 additions and 5 deletions
|
|
@ -232,7 +232,7 @@ class Book extends Model {
|
|||
chapters: this.chapters?.map(c => ({ ...c })) || [],
|
||||
title: this.title,
|
||||
subtitle: this.subtitle,
|
||||
authors: this.authors.map(a => a.name),
|
||||
authors: this.authors.map(a => a.name.trim()),
|
||||
narrators: this.narrators,
|
||||
series: this.series.map(se => {
|
||||
const sequence = se.bookSeries?.sequence || ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue