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() {