mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 05:46:21 +02:00
Fix editing the authors via the book list not respecting the tweak to control author name splitting
This commit is contained in:
parent
64d3ed4c26
commit
58dc106004
1 changed files with 2 additions and 0 deletions
|
|
@ -1161,6 +1161,8 @@ def _set_data(self, index, value):
|
|||
val = val.split(',')
|
||||
self.db.set_languages(id, val)
|
||||
else:
|
||||
if column == 'authors' and val:
|
||||
val = authors_to_string(string_to_authors(val))
|
||||
books_to_refresh |= self.db.set(row, column, val,
|
||||
allow_case_change=True)
|
||||
self.refresh_ids(list(books_to_refresh), row)
|
||||
|
|
|
|||
Loading…
Reference in a new issue