mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-02-10 10:14:36 +01:00
Fix #8400 (Not reading Nook)
This commit is contained in:
parent
631ba316df
commit
47f4df49b6
1 changed files with 4 additions and 1 deletions
|
|
@ -690,7 +690,10 @@ def get_metadata(self, idx, index_is_id=False, get_cover=False):
|
|||
mi = Metadata(None)
|
||||
|
||||
aut_list = row[fm['au_map']]
|
||||
aut_list = [p.split(':::') for p in aut_list.split(':#:')]
|
||||
if aut_list:
|
||||
aut_list = [p.split(':::') for p in aut_list.split(':#:') if p]
|
||||
else:
|
||||
aut_list = []
|
||||
aum = []
|
||||
aus = {}
|
||||
for (author, author_sort) in aut_list:
|
||||
|
|
|
|||
Loading…
Reference in a new issue