You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not link in pagination direction for events at start of chunk
If we link chunks in pagination direction, and discard all events after
that, we assume that we reached a point in the chunk that is already
covered by a different chunk.
If we however haven't seen any new events in that chunk yet, chances are
this is the wrong direction we are linking. So in this case, better just
skip related events and continue processing later events - making sure
we don't lose new events and don't link in the wrong direction.
Note we could also enforce links into the opposite direction in this case.
Since in the cases I observed so far, such link already existed, so I
think this is probably not necessary.
Change-Id: Ia4d2fd87188b9757ed68416e883c3fb489cdfa6e
Copy file name to clipboardexpand all lines: matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/session/room/timeline/TokenChunkEventPersistor.kt
+12
Original file line number
Diff line number
Diff line change
@@ -177,6 +177,7 @@ internal class TokenChunkEventPersistor @Inject constructor(
177
177
}
178
178
}
179
179
val optimizedThreadSummaryMap = hashMapOf<String, EventEntity>()
180
+
var hasNewEvents =false
180
181
run processTimelineEvents@{
181
182
eventList.forEach { event ->
182
183
if (event.eventId ==null|| event.senderId ==null) {
@@ -191,6 +192,13 @@ internal class TokenChunkEventPersistor @Inject constructor(
191
192
// If it exists, we want to stop here, just link the prevChunk
192
193
val existingChunk = existingTimelineEvent?.chunk?.firstOrNull()
193
194
if (existingChunk !=null) {
195
+
// If we haven't found a single new event yet, we don't want to link in the pagination direction, as that might cause a
196
+
// timeline loop if the other chunk is in the other direction.
0 commit comments