From 4b44da02bab719da0e82679036afa6af0541a8af Mon Sep 17 00:00:00 2001 From: barbequesauce Date: Fri, 19 Oct 2018 12:17:39 -0400 Subject: [PATCH] FIX: remove forms-based login from OPDS --- mylar/webstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mylar/webstart.py b/mylar/webstart.py index 09e5bbfe..0c99972e 100755 --- a/mylar/webstart.py +++ b/mylar/webstart.py @@ -163,7 +163,7 @@ def initialize(options): 'tools.auth_basic.realm': 'Mylar OPDS', 'tools.auth_basic.checkpassword': cherrypy.lib.auth_basic.checkpassword_dict(user_list)} else: - conf['/opds'] = {'tools.auth_basic.on': False} + conf['/opds'] = {'tools.auth_basic.on': False, 'tools.auth.on': False} # Prevent time-outs cherrypy.engine.timeout_monitor.unsubscribe()