mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix regression where the '|' character was not converted to comma in get_metadata
This commit is contained in:
parent
584b8bfa29
commit
1e7c9fb2c3
@ -694,7 +694,7 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns):
|
|||||||
aum = []
|
aum = []
|
||||||
aus = {}
|
aus = {}
|
||||||
for (author, author_sort) in aut_list:
|
for (author, author_sort) in aut_list:
|
||||||
aum.append(author)
|
aum.append(author.replace('|', ','))
|
||||||
aus[author] = author_sort.replace('|', ',')
|
aus[author] = author_sort.replace('|', ',')
|
||||||
mi.title = row[fm['title']]
|
mi.title = row[fm['title']]
|
||||||
mi.authors = aum
|
mi.authors = aum
|
||||||
|
Loading…
x
Reference in New Issue
Block a user