Browse Source
Correction of verify_email error message
pull/1198/head
Fabian van Steen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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(()) |
|
|
|