From e28b23f713fda315d28aaf6a375a720aae166f78 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 3 May 2020 01:07:58 -0400 Subject: save the private key to the local db --- src/bin/rbw-agent/actions.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/bin/rbw-agent') diff --git a/src/bin/rbw-agent/actions.rs b/src/bin/rbw-agent/actions.rs index afe76c8..d17f5f1 100644 --- a/src/bin/rbw-agent/actions.rs +++ b/src/bin/rbw-agent/actions.rs @@ -189,7 +189,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, entries)) = + let (access_token, (protected_key, protected_private_key, entries)) = rbw::actions::sync(&access_token, &refresh_token) .await .context("failed to sync database from server")?; @@ -197,6 +197,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.protected_private_key = Some(protected_private_key); db.entries = entries; db.save_async(&email) .await -- cgit v1.2.3-54-g00ecf