Save None instead of empty password hint

This commit is contained in:
Jean-Christophe BEGUE 2018-09-11 13:00:59 +02:00
parent 9e63985b28
commit e2ab2f7306
1 changed files with 4 additions and 1 deletions

View File

@ -82,7 +82,10 @@ fn post_profile(data: JsonUpcase<ProfileData>, headers: Headers, conn: DbConn) -
let mut user = headers.user;
user.name = data.Name;
user.password_hint = data.MasterPasswordHint;
user.password_hint = match data.MasterPasswordHint {
Some(ref h) if h.is_empty() => None,
_ => data.MasterPasswordHint,
};
user.save(&conn);
Ok(Json(user.to_json(&conn)))