working on translations

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2024-06-07 12:33:43 +02:00
parent f882a56804
commit 1b61004238

View File

@@ -376,12 +376,12 @@ public class Web extends TemplateServlet {
if (token != null){
try {
user = User.byToken(req.getParameter(TOKEN));
if (user == null) return loadTemplate(path,Map.of(ERROR,"Failed to find user for token!"),resp);
if (user == null) return loadTemplate(path,Map.of(ERROR,t("Failed to find user for token!")),resp);
user.dropPasswordToken();
req.getSession().setAttribute("user",user);
return redirectTo(NEW_PASSWORD_FORM,resp);
} catch (SQLException sqle){
return loadTemplate(path,Map.of(ERROR,"Failed to add user for token!"),resp);
return loadTemplate(path,Map.of(ERROR,t("Failed to add user for token!")),resp);
}
}
var email = req.getParameter(EMAIL);