From ee24bacda8d9015d9d3bb7c0c8d2b7633896cf80 Mon Sep 17 00:00:00 2001 From: Jordan Date: Thu, 9 Jul 2020 14:20:56 -0700 Subject: housekeeping --- run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'run.py') diff --git a/run.py b/run.py index 8d3bed8..e48f19f 100755 --- a/run.py +++ b/run.py @@ -31,7 +31,6 @@ def list_books(): return 'book or file not found', 404 f_path = books[a]['files'][f]['path'] - return send_file(f_path, conditional=True) # serve up audiobook RSS feed; only audiobook hash provided @@ -41,11 +40,13 @@ def list_books(): rss = generate_rss(request, books) return Response(rss, mimetype='text/xml') + else: auth = request.authorization if not auth or not check_auth(app, auth.username, auth.password): form = {'WWW-Authenticate': 'Basic realm="o/"'} return Response('unauthorized', 401, form) + return render_template('index.html', books=books) if __name__ == '__main__': -- cgit v1.2.3-54-g00ecf