fixing typo

This commit is contained in:
Benjamin Kampmann
2021-11-18 13:48:56 +01:00
parent 7df36e3d49
commit b16c660258

View File

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