|
|
|
@ -1757,7 +1757,6 @@ def feed_get_cover(book_id):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def render_read_books(page, are_read, as_xml=False):
|
|
|
|
|
if not current_user.is_anonymous:
|
|
|
|
|
readBooks = ub.session.query(ub.ReadBook).filter(ub.ReadBook.user_id == int(current_user.id)).filter(ub.ReadBook.is_read == True).all()
|
|
|
|
|
readBookIds = [x.book_id for x in readBooks]
|
|
|
|
|
if are_read:
|
|
|
|
@ -1767,10 +1766,6 @@ def render_read_books(page, are_read, as_xml=False):
|
|
|
|
|
|
|
|
|
|
entries, random, pagination = fill_indexpage(page, db.Books,
|
|
|
|
|
db_filter, db.Books.timestamp.desc())
|
|
|
|
|
else:
|
|
|
|
|
entries = []
|
|
|
|
|
random = False
|
|
|
|
|
pagination = Pagination(page, 1, 0)
|
|
|
|
|
|
|
|
|
|
if as_xml:
|
|
|
|
|
xml = render_title_template('feed.xml', entries=entries, pagination=pagination)
|
|
|
|
|