vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit b41a0d840cc963a5e1810c1ef3e6aa7cfddc0f21
parent c577ade90e0b6f596b27fc117a13bc2cf8f374d7
Author: Fabian van Steen <mail@fabianvansteen.nl>
Date:   Fri, 23 Oct 2020 10:30:25 +0200

Correction of verify_email error message
Diffstat:
Msrc/api/core/accounts.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/api/core/accounts.rs b/src/api/core/accounts.rs @@ -460,7 +460,7 @@ fn post_verify_email(headers: Headers, _conn: DbConn) -> EmptyResult { } if let Err(e) = mail::send_verify_email(&user.email, &user.uuid) { - error!("Error sending delete account email: {:#?}", e); + error!("Error sending verify_email email: {:#?}", e); } Ok(())