1
0
mirror of https://github.com/janeczku/calibre-web synced 2026-06-04 19:52:11 +00:00
This commit is contained in:
Ozzieisaacs
2019-09-02 19:27:24 +02:00
parent a7fdbad8b4
commit 051bc53aa2
+1 -1
View File
@@ -943,7 +943,7 @@ def render_read_books(page, are_read, as_xml=False, order=None):
order = order or []
if not config.config_read_column:
readBooks = ub.session.query(ub.ReadBook).filter(ub.ReadBook.user_id == int(current_user.id))\
.filter(ub.ReadBook.is_read is True).all()
.filter(ub.ReadBook.is_read == True).all()
readBookIds = [x.book_id for x in readBooks]
else:
try: