diff --git a/apps/server/src/routes/login.ts b/apps/server/src/routes/login.ts index 107fb1494..873562cd0 100644 --- a/apps/server/src/routes/login.ts +++ b/apps/server/src/routes/login.ts @@ -14,7 +14,7 @@ import openIDEncryption from '../services/encryption/open_id_encryption.js'; import { getCurrentLocale } from "../services/i18n.js"; function loginPage(req: Request, res: Response) { - // Login page is triggered twice. Once here, and another time if the password is failed. + // Login page is triggered twice. Once here, and another time (see sendLoginError) if the password is failed. res.render('login', { wrongPassword: false, wrongTotp: false, @@ -177,6 +177,7 @@ function sendLoginError(req: Request, res: Response, errorType: 'password' | 'to assetPath: assetPath, assetPathFragment: assetUrlFragment, appPath: appPath, + currentLocale: getCurrentLocale() }); }