From 366af6a9888f06e14ab24d9b0be3ea4ef1f1b498 Mon Sep 17 00:00:00 2001 From: Hinton Date: Tue, 17 Oct 2023 17:12:52 +0200 Subject: [PATCH] Fmt --- crates/bitwarden-uniffi/src/vault/mod.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/crates/bitwarden-uniffi/src/vault/mod.rs b/crates/bitwarden-uniffi/src/vault/mod.rs index 3ea9597a3..79b3e5835 100644 --- a/crates/bitwarden-uniffi/src/vault/mod.rs +++ b/crates/bitwarden-uniffi/src/vault/mod.rs @@ -48,6 +48,12 @@ impl ClientVault { /// - OTP Auth URI /// - Steam URI pub async fn generate_totp(&self, key: String, time: Option>) -> TotpResponse { - self.0 .0.read().await.vault().generate_totp(key, time).await + self.0 + .0 + .read() + .await + .vault() + .generate_totp(key, time) + .await } }