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

This commit is contained in:
morpheus65535 2024-04-01 10:01:09 -04:00
parent 4d11b9580c
commit ad16acb88f
1 changed files with 1 additions and 1 deletions

View File

@ -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':