mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 15:13:39 +02:00
Fix regression where the '|' character was not converted to comma in get_metadata
This commit is contained in:
parent
584b8bfa29
commit
1e7c9fb2c3
1 changed files with 1 additions and 1 deletions
|
|
@ -694,7 +694,7 @@ def get_metadata(self, idx, index_is_id=False, get_cover=False):
|
|||
aum = []
|
||||
aus = {}
|
||||
for (author, author_sort) in aut_list:
|
||||
aum.append(author)
|
||||
aum.append(author.replace('|', ','))
|
||||
aus[author] = author_sort.replace('|', ',')
|
||||
mi.title = row[fm['title']]
|
||||
mi.authors = aum
|
||||
|
|
|
|||
Loading…
Reference in a new issue