From 4d11b9580cc1d175a93204a3067d2561f3f91f66 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Sat, 30 Mar 2024 09:09:08 -0400 Subject: [PATCH] Fixed login page getting called even if authentication is disabled. #2441 --- bazarr/app/ui.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bazarr/app/ui.py b/bazarr/app/ui.py index 5ca597be7..925b25912 100644 --- a/bazarr/app/ui.py +++ b/bazarr/app/ui.py @@ -4,7 +4,8 @@ import os import requests import mimetypes -from flask import request, abort, render_template, Response, session, send_file, stream_with_context, Blueprint +from flask import (request, abort, render_template, Response, session, send_file, stream_with_context, Blueprint, + redirect) from functools import wraps from urllib.parse import unquote @@ -65,6 +66,10 @@ def check_login(actual_method): @ui_bp.route('/', defaults={'path': ''}) @ui_bp.route('/') 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) + auth = True if settings.auth.type == 'basic': auth = request.authorization