🐛 Fixes typo

This commit is contained in:
2026-08-28 20:45:07 +02:00
parent 3f80e45e1a
commit 01d57bbb26
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ This is a simple CLI tool to sync Bitwarden logins to Proton Pass. It can be set
### Runtime requirements: ### Runtime requirements:
- `pass-cli` - Proton Pass CLI (must be logged in) - `pass-cli` - Proton Pass CLI (must be logged in)
- `bw` - Bitwarden CLI (must be logged in - BW_SESSION must be set) - `bw` - Bitwarden CLI (must be logged in BW_SESSION must be set)
### Installing ### Installing
+1 -1
View File
@@ -142,7 +142,7 @@ pub fn update(vault: &String, item: LoginItem, user_is_actually_email: bool) {
let user_field_update = if user_is_actually_email { let user_field_update = if user_is_actually_email {
format!("email={}", item.email) format!("email={}", item.email)
} else { } else {
format!("usename={}", item.username) format!("username={}", item.username)
}; };
let maybe_urls = if let Some(urls) = item.urls { let maybe_urls = if let Some(urls) = item.urls {