Remove basic auth setting

This commit is contained in:
JonnyWong16 2021-07-08 20:22:02 -07:00
parent fe765f7827
commit 2ea4b6b63d
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
3 changed files with 6 additions and 20 deletions

View file

@ -276,7 +276,7 @@ def check_rate_limit(ip_address):
class AuthController(object):
def check_auth_enabled(self):
if not plexpy.CONFIG.HTTP_BASIC_AUTH and plexpy.CONFIG.HTTP_PASSWORD:
if plexpy.CONFIG.HTTP_PASSWORD:
return
raise cherrypy.HTTPRedirect(plexpy.HTTP_ROOT)