diff --git a/crates/matrix-sdk-crypto/src/store/mod.rs b/crates/matrix-sdk-crypto/src/store/mod.rs index 7edb632da..5ecd96d28 100644 --- a/crates/matrix-sdk-crypto/src/store/mod.rs +++ b/crates/matrix-sdk-crypto/src/store/mod.rs @@ -1168,9 +1168,6 @@ impl Store { pub(crate) async fn users_for_key_query( &self, ) -> Result<(HashSet, SequenceNumber)> { - // Make sure the tracked users set is up to date. - let _cache = self.cache().await?; - Ok(self.inner.users_for_key_query.lock().await.users_for_key_query()) }