aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/rbw-agent/actions.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/rbw-agent/actions.rs')
-rw-r--r--src/bin/rbw-agent/actions.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/rbw-agent/actions.rs b/src/bin/rbw-agent/actions.rs
index 75c1c25..9875d5c 100644
--- a/src/bin/rbw-agent/actions.rs
+++ b/src/bin/rbw-agent/actions.rs
@@ -137,7 +137,7 @@ pub async fn sync(sock: &mut crate::sock::Sock) -> anyhow::Result<()> {
} else {
return Err(anyhow::anyhow!("failed to find refresh token in db"));
};
- let (access_token, protected_key, ciphers) =
+ let (access_token, protected_key, entries) =
rbw::actions::sync(&access_token, &refresh_token)
.await
.context("failed to sync database from server")?;
@@ -145,7 +145,7 @@ pub async fn sync(sock: &mut crate::sock::Sock) -> anyhow::Result<()> {
db.access_token = Some(access_token);
}
db.protected_key = Some(protected_key);
- db.ciphers = ciphers;
+ db.entries = entries;
db.save_async(&email)
.await
.context("failed to save database")?;