Browse Source

Correction of verify_email error message

pull/1198/head
Fabian van Steen 4 years ago
committed by GitHub
parent
commit
b41a0d840c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/api/core/accounts.rs

2
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(())

Loading…
Cancel
Save