From e3c67a0caf53922b23069ae565dd3f92f50b1def Mon Sep 17 00:00:00 2001 From: Fanilo-Nantenaina Date: Tue, 2 Dec 2025 15:55:18 +0300 Subject: [PATCH] reverted second mismatching fix changes --- routes/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/auth.py b/routes/auth.py index c23a28b..961f1c3 100644 --- a/routes/auth.py +++ b/routes/auth.py @@ -534,7 +534,7 @@ async def forgot_password( await session.commit() # Envoyer email - frontend_url = settings.frontend_url + frontend_url = settings.frontend_url if hasattr(settings, 'frontend_url') else str(request.base_url).rstrip('/') AuthEmailService.send_password_reset_email( user.email, reset_token,