Skip to content

Commit 9d7153f

Browse files
committed
Format with rust debug
1 parent 9d3ce7f commit 9d7153f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/bitwarden-vault/src/vault_client.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ impl VaultClient {
2828
let mut result = String::new();
2929
let ciphers = store.list().await.expect("msg");
3030
for cipher in ciphers {
31-
result.push_str(&serde_json::to_string(&cipher).expect("msg"));
32-
result.push('\n');
31+
result.push_str(format!("{cipher:?}\n").as_str());
3332
}
3433
result
3534
}

0 commit comments

Comments
 (0)