We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28647b6 commit eee0badCopy full SHA for eee0bad
crates/matrix-sdk-indexeddb/src/event_cache_store/mod.rs
@@ -279,9 +279,8 @@ impl_event_cache_store!({
279
280
let object_store = tx.object_store(keys::EVENTS)?;
281
282
- let event = object_store
283
- .get_key(&JsValue::from_str(&format!("{}-{}", chunk_id, index)))?
284
- .await?;
+ // We need to remove ALL the items >= index
+ // But since we are on no sql, we can't do a range query
285
}
286
Update::StartReattachItems => {}
287
Update::EndReattachItems => {}
0 commit comments