server: Remove trailing / from the domain URL

This commit is contained in:
Valentin Tolmer 2023-02-15 11:15:02 +01:00 committed by nitnelave
parent 3650a438df
commit 193a0fd710

View File

@ -65,7 +65,9 @@ compromised. You should reset your password and contact an administrator.
To reset your password please visit the following URL: {}/reset-password/step2/{} To reset your password please visit the following URL: {}/reset-password/step2/{}
Please contact an administrator if you did not initiate the process.", Please contact an administrator if you did not initiate the process.",
username, domain, token username,
domain.trim_end_matches('/'),
token
); );
send_email(to, "[LLDAP] Password reset requested", body, options).await send_email(to, "[LLDAP] Password reset requested", body, options).await
} }