Browse Source

Merge pull request #1198 from fabianvansteen/patch-1

Correction of verify_email error message
pull/1199/head
Mathijs van Veluw 4 years ago
committed by GitHub
parent
commit
7099f8bee8
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) { 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(()) Ok(())

Loading…
Cancel
Save