From c282d9fabc1ef102447efaf5da478b1a0a727cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Fri, 10 Apr 2020 16:17:31 +0200 Subject: [PATCH] machine: Uncomment account saving after keys were published. --- src/crypto/machine.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/crypto/machine.rs b/src/crypto/machine.rs index 1ebc5526..0a717857 100644 --- a/src/crypto/machine.rs +++ b/src/crypto/machine.rs @@ -187,8 +187,7 @@ impl OlmMachine { self.uploaded_signed_key_count = Some(count); self.account.mark_keys_as_published().await; - - // self.store.save_account(self.account.clone()).await?; + self.store.save_account(self.account.clone()).await?; Ok(()) }