From ff500fc707c50bb1a2ac2c7d604599f0fe0b8d64 Mon Sep 17 00:00:00 2001 From: valere Date: Sat, 25 Feb 2023 10:39:17 +0100 Subject: [PATCH] fix unused result --- crates/matrix-sdk-indexeddb/src/crypto_store.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-indexeddb/src/crypto_store.rs b/crates/matrix-sdk-indexeddb/src/crypto_store.rs index 7317ff9da..853656fff 100644 --- a/crates/matrix-sdk-indexeddb/src/crypto_store.rs +++ b/crates/matrix-sdk-indexeddb/src/crypto_store.rs @@ -583,7 +583,7 @@ impl_crypto_store! { let no_olms = tx.object_store(KEYS::NO_OLM_SENT)?; for key in no_olm_to_clear { - no_olms.delete(&key); + no_olms.delete(&key)?; } for (user_id, device_list) in no_olm_sent {