From d68f57cbba3e1d1c929fbb72b135ffbd88c3732a Mon Sep 17 00:00:00 2001 From: Jean-Christophe BEGUE Date: Wed, 15 Aug 2018 14:08:00 +0200 Subject: [PATCH] Fix password hint showing logic --- src/api/core/accounts.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/api/core/accounts.rs b/src/api/core/accounts.rs index bc018f1e..1d6469c2 100644 --- a/src/api/core/accounts.rs +++ b/src/api/core/accounts.rs @@ -265,15 +265,16 @@ fn password_hint(data: JsonUpcase, conn: DbConn) -> EmptyResul } let user = user.unwrap(); - let hint = user.password_hint.to_owned().unwrap_or("You don't have any...".to_string()); + let hint = match user.password_hint { + Some(hint) => hint, + None => return Ok(()), + }; if let Some(ref mail_config) = CONFIG.mail { if let Err(e) = mail::send_password_hint(&user.email, &hint, mail_config) { err!(format!("There have been a problem sending the email: {}", e)); } - } - - if !CONFIG.show_password_hint { + } else if CONFIG.show_password_hint { err!(format!("Your password hint is: {}", &hint)); }