mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 13:16:39 +00:00
Fix Yubikeys deleted on error
This commit is contained in:
parent
71da961ecd
commit
93805a5d7b
@ -573,11 +573,10 @@ fn activate_yubikey(data: JsonUpcase<EnableYubikeyData>, headers: Headers, conn:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Check if we already have some data
|
// Check if we already have some data
|
||||||
let yubikey_data = TwoFactor::find_by_user_and_type(&user.uuid, TwoFactorType::YubiKey as i32, &conn);
|
let mut yubikey_data = match TwoFactor::find_by_user_and_type(&user.uuid, TwoFactorType::YubiKey as i32, &conn) {
|
||||||
|
Some(data) => data,
|
||||||
if let Some(yubikey_data) = yubikey_data {
|
None => TwoFactor::new(user.uuid.clone(), TwoFactorType::YubiKey, String::new()),
|
||||||
yubikey_data.delete(&conn)?;
|
};
|
||||||
}
|
|
||||||
|
|
||||||
let yubikeys = parse_yubikeys(&data);
|
let yubikeys = parse_yubikeys(&data);
|
||||||
|
|
||||||
@ -605,12 +604,8 @@ fn activate_yubikey(data: JsonUpcase<EnableYubikeyData>, headers: Headers, conn:
|
|||||||
Nfc: data.Nfc,
|
Nfc: data.Nfc,
|
||||||
};
|
};
|
||||||
|
|
||||||
let yubikey_registration = TwoFactor::new(
|
yubikey_data.data = serde_json::to_string(&yubikey_metadata).unwrap();
|
||||||
user.uuid.clone(),
|
yubikey_data.save(&conn)?;
|
||||||
TwoFactorType::YubiKey,
|
|
||||||
serde_json::to_string(&yubikey_metadata).unwrap(),
|
|
||||||
);
|
|
||||||
yubikey_registration.save(&conn)?;
|
|
||||||
|
|
||||||
_generate_recover_code(&mut user, &conn);
|
_generate_recover_code(&mut user, &conn);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user