mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 04:03:52 +02:00
...
This commit is contained in:
parent
89a8ca7e8d
commit
22f0d6908c
1 changed files with 2 additions and 1 deletions
|
|
@ -404,7 +404,8 @@ def metadata_for(self, ids):
|
|||
for id in ids:
|
||||
mi = self.db.get_metadata(id, index_is_id=True)
|
||||
if mi.series is not None:
|
||||
mi.tag_order = self.db.books_in_series_of(id, index_is_id=True)
|
||||
mi.tag_order = { mi.series: self.db.books_in_series_of(id,
|
||||
index_is_id=True)}
|
||||
ans.append(mi)
|
||||
return ans
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue