Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 638e18e

Browse files
committedApr 30, 2022
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
1 parent ef57e60 commit 638e18e

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
 

‎matrix-sdk-android/src/main/java/org/matrix/android/sdk/internal/session/room/timeline/TokenChunkEventPersistor.kt

+12
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ internal class TokenChunkEventPersistor @Inject constructor(
177177
}
178178
}
179179
val optimizedThreadSummaryMap = hashMapOf<String, EventEntity>()
180+
var hasNewEvents = false
180181
run processTimelineEvents@{
181182
eventList.forEach { event ->
182183
if (event.eventId == null || event.senderId == null) {
@@ -191,6 +192,13 @@ internal class TokenChunkEventPersistor @Inject constructor(
191192
// If it exists, we want to stop here, just link the prevChunk
192193
val existingChunk = existingTimelineEvent?.chunk?.firstOrNull()
193194
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.
197+
if (!hasNewEvents) {
198+
Timber.i("Skip adding event $eventId, already exists")
199+
// Only skip this event, but still process other events
200+
return@forEach
201+
}
194202
when (direction) {
195203
PaginationDirection.BACKWARDS -> {
196204
if (currentChunk.nextChunk == existingChunk) {
@@ -212,6 +220,10 @@ internal class TokenChunkEventPersistor @Inject constructor(
212220
// Stop processing here
213221
return@processTimelineEvents
214222
}
223+
224+
// existingChunk == null => this is a new event we haven't seen before
225+
hasNewEvents = true
226+
215227
val ageLocalTs = event.unsignedData?.age?.let { now - it }
216228
var eventEntity = event.toEntity(roomId, SendState.SYNCED, ageLocalTs).copyToRealmOrIgnore(realm, EventInsertType.PAGINATION)
217229
if (event.type == EventType.STATE_ROOM_MEMBER && event.stateKey != null) {

0 commit comments

Comments
 (0)
Please sign in to comment.