1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-16 10:19:56 +00:00

Bugfixes opds feed

This commit is contained in:
Ozzie Isaacs 2024-05-11 14:26:43 +02:00
parent 4911843146
commit 2b1efdb50e
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ def feed_best_rated():
@opds.route("/opds/hot") @opds.route("/opds/hot")
@requires_basic_auth_if_no_ano @requires_basic_auth_if_no_ano
def feed_hot(): def feed_hot():
if not current_user.check_visibility(constants.SIDEBAR_DOWNLOAD): if not current_user.check_visibility(constants.SIDEBAR_HOT):
abort(404) abort(404)
off = request.args.get("offset") or 0 off = request.args.get("offset") or 0
all_books = ub.session.query(ub.Downloads, func.count(ub.Downloads.book_id)).order_by( all_books = ub.session.query(ub.Downloads, func.count(ub.Downloads.book_id)).order_by(

View File

@ -22,7 +22,7 @@
<updated>{{ current_time }}</updated> <updated>{{ current_time }}</updated>
<content type="text">{{_('Books sorted alphabetically')}}</content> <content type="text">{{_('Books sorted alphabetically')}}</content>
</entry> </entry>
{% if current_user.check_visibility(g.constants.SIDEBAR_DOWNLOAD) and (not current_user.is_anonymous) %} {% if current_user.check_visibility(g.constants.SIDEBAR_HOT) %}
<entry> <entry>
<title>{{_('Hot Books')}}</title> <title>{{_('Hot Books')}}</title>
<link href="{{url_for('opds.feed_hot')}}" type="application/atom+xml;profile=opds-catalog"/> <link href="{{url_for('opds.feed_hot')}}" type="application/atom+xml;profile=opds-catalog"/>