@@ -747,9 +747,16 @@ mod private {
747
747
/// Return `Ok(Some(events, reached_start))` if events have been
748
748
/// inserted, `Ok(None)` if a gap has been inserted or if the
749
749
/// store is disabled.
750
+ #[ must_use = "Updates as `VectorDiff` must probably be propagated via `RoomEventCacheUpdate`" ]
750
751
pub async fn load_one_chunk_backwards (
751
752
& 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
+
753
760
let Some ( store) = self . store . get ( ) else {
754
761
// No store: no events to insert.
755
762
return Ok ( None ) ;
@@ -788,7 +795,15 @@ mod private {
788
795
789
796
self . events . insert_new_chunk_as_first ( new_first_chunk) ;
790
797
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) ) )
792
807
}
793
808
}
794
809
}
0 commit comments