From 98663d4c591d7008bbac9122ca7f52dc582a6433 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Mon, 22 Dec 2025 09:20:48 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- api/controllers/web/forgot_password.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/controllers/web/forgot_password.py b/api/controllers/web/forgot_password.py index a78abbc856..7f86dbc204 100644 --- a/api/controllers/web/forgot_password.py +++ b/api/controllers/web/forgot_password.py @@ -101,7 +101,7 @@ class ForgotPasswordCheckApi(Resource): if not isinstance(token_email, str): raise InvalidEmailError() normalized_token_email = token_email.lower() - + if user_email != normalized_token_email: raise InvalidEmailError()