mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
...
This commit is contained in:
parent
9541af5a7c
commit
2912869ff4
@ -402,10 +402,10 @@ class BooksModel(QAbstractTableModel):
|
|||||||
def metadata_for(self, ids):
|
def metadata_for(self, ids):
|
||||||
ans = []
|
ans = []
|
||||||
for id in ids:
|
for id in ids:
|
||||||
mi = self.db.get_metadata(id, index_is_id=True)
|
mi = self.db.get_metadata(id, index_is_id=True, get_cover=True)
|
||||||
if mi.series is not None:
|
if mi.series is not None:
|
||||||
mi.tag_order = { mi.series: self.db.books_in_series_of(id,
|
mi.tag_order = { mi.series: self.db.books_in_series_of(id,
|
||||||
index_is_id=True, get_cover=True)}
|
index_is_id=True)}
|
||||||
ans.append(mi)
|
ans.append(mi)
|
||||||
return ans
|
return ans
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user