Fixed improper redirection from login page when base_url isn't empty.

pull/2444/head v1.4.3-beta.15
morpheus65535 2 months ago
parent 4d11b9580c
commit ad16acb88f

@ -68,7 +68,7 @@ def check_login(actual_method):
def catch_all(path):
if path.startswith('login') and settings.auth.type not in ['basic', 'form']:
# login page has been accessed when no authentication is enabled
return redirect('/', code=302)
return redirect(base_url or "/", code=302)
auth = True
if settings.auth.type == 'basic':

Loading…
Cancel
Save