From b16c660258e2ddbbc9dad54be3fddbff68a4b399 Mon Sep 17 00:00:00 2001 From: Benjamin Kampmann Date: Thu, 18 Nov 2021 13:48:56 +0100 Subject: [PATCH] fixing typo --- crates/matrix-sdk-base/src/store/indexeddb_store/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/matrix-sdk-base/src/store/indexeddb_store/mod.rs b/crates/matrix-sdk-base/src/store/indexeddb_store/mod.rs index d487d30d2..dc39f8c48 100644 --- a/crates/matrix-sdk-base/src/store/indexeddb_store/mod.rs +++ b/crates/matrix-sdk-base/src/store/indexeddb_store/mod.rs @@ -796,7 +796,7 @@ impl IndexeddbStore { let mut all = Vec::new(); for k in store.get_all_keys_with_key(&range)?.await?.iter() { - // FIXME: we should probably parallize this... + // FIXME: we should probably parallelize this... let res = store.get(&k)?.await?.ok_or(StoreError::Codec(format!("no data at {:?}", k)))?; let u = if let Some(k_str) = k.as_string() {