Skip to content

Commit b0069b0

Browse files
committed
fixup! lets deal with propagate_changes and updates drain
1 parent 6c1ea4f commit b0069b0

File tree

2 files changed

+27
-3
lines changed

2 files changed

+27
-3
lines changed

crates/matrix-sdk/src/event_cache/pagination.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,16 @@ impl RoomPagination {
131131

132132
// Try to load one chunk backwards. If it returns `Some(_)`, it means new events
133133
// have been inserted. No need to reach the network!
134-
if let Some((events, reached_start)) = state.load_one_chunk_backwards().await? {
134+
if let Some(((events, reached_start), sync_timeline_events_diffs)) =
135+
state.load_one_chunk_backwards().await?
136+
{
137+
if !sync_timeline_events_diffs.is_empty() {
138+
let _ = self.inner.sender.send(RoomEventCacheUpdate::UpdateTimelineEvents {
139+
diffs: sync_timeline_events_diffs,
140+
origin: EventsOrigin::Pagination,
141+
});
142+
}
143+
135144
return Ok(Some(BackPaginationOutcome { reached_start, events }));
136145
}
137146
}

crates/matrix-sdk/src/event_cache/room/mod.rs

+17-2
Original file line numberDiff line numberDiff line change
@@ -747,9 +747,16 @@ mod private {
747747
/// Return `Ok(Some(events, reached_start))` if events have been
748748
/// inserted, `Ok(None)` if a gap has been inserted or if the
749749
/// store is disabled.
750+
#[must_use = "Updates as `VectorDiff` must probably be propagated via `RoomEventCacheUpdate`"]
750751
pub async fn load_one_chunk_backwards(
751752
&mut self,
752-
) -> Result<Option<(Vec<TimelineEvent>, bool)>, EventCacheError> {
753+
) -> Result<
754+
Option<((Vec<TimelineEvent>, bool), Vec<VectorDiff<TimelineEvent>>)>,
755+
EventCacheError,
756+
> {
757+
// ⚠️ Propagate all pending updates before we do anything.
758+
self.propagate_changes().await?;
759+
753760
let Some(store) = self.store.get() else {
754761
// No store: no events to insert.
755762
return Ok(None);
@@ -788,7 +795,15 @@ mod private {
788795

789796
self.events.insert_new_chunk_as_first(new_first_chunk);
790797

791-
Ok(result)
798+
// ⚠️ Let's not propagate the updates to the store! We already have these data
799+
// in the store! Let's drain them.
800+
let _ = self.events.updates().take();
801+
802+
// However, we want to get updates as `VectorDiff`s.
803+
let updates_as_vector_diffs = self.events.updates_as_vector_diffs();
804+
805+
Ok(result
806+
.map(|(events, reached_start)| ((events, reached_start), updates_as_vector_diffs)))
792807
}
793808
}
794809
}

0 commit comments

Comments
 (0)