diff --git a/pve-rs/src/tfa.rs b/pve-rs/src/tfa.rs index 6650151..9381ef0 100644 --- a/pve-rs/src/tfa.rs +++ b/pve-rs/src/tfa.rs @@ -490,11 +490,11 @@ mod export { #[export] fn api_unlock_tfa(#[raw] raw_this: Value, userid: &str) -> Result { let this: &Tfa = (&raw_this).try_into()?; - Ok(methods::unlock_and_reset_tfa( + methods::unlock_and_reset_tfa( &mut this.inner.lock().unwrap(), &UserAccess::new(&raw_this)?, userid, - )?) + ) } #[derive(serde::Serialize)]