mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-18 20:29:10 +03:00
[rich replies] Disable useless recent upstream reply fallback changes
Change-Id: I37cf9986dba043ae6ca146b98a29e05f004de3a4
This commit is contained in:
parent
627e7f5019
commit
94b996b52a
2 changed files with 10 additions and 4 deletions
|
@ -52,7 +52,6 @@ import org.matrix.android.sdk.internal.session.room.state.StateEventDataSource
|
|||
import org.matrix.android.sdk.internal.session.room.timeline.decorator.TimelineEventDecorator
|
||||
import org.matrix.android.sdk.internal.session.room.timeline.decorator.TimelineEventDecoratorChain
|
||||
import org.matrix.android.sdk.internal.session.room.timeline.decorator.UiEchoDecorator
|
||||
import org.matrix.android.sdk.internal.session.room.timeline.decorator.UpdatedReplyDecorator
|
||||
import org.matrix.android.sdk.internal.session.sync.handler.room.ThreadsAwarenessHandler
|
||||
import org.matrix.android.sdk.internal.util.time.Clock
|
||||
import timber.log.Timber
|
||||
|
@ -381,12 +380,14 @@ internal class LoadTimelineStrategy constructor(
|
|||
fun createTimelineEventDecorator(): TimelineEventDecorator {
|
||||
val decorators = listOf(
|
||||
UiEchoDecorator(uiEchoManager),
|
||||
/* // SC: this is upstream reply fallback stuff
|
||||
UpdatedReplyDecorator(
|
||||
realm = dependencies.realm,
|
||||
roomId = roomId,
|
||||
localEchoEventFactory = dependencies.localEchoEventFactory,
|
||||
timelineEventMapper = dependencies.timelineEventMapper
|
||||
)
|
||||
*/
|
||||
)
|
||||
return TimelineEventDecoratorChain(decorators)
|
||||
}
|
||||
|
|
|
@ -93,7 +93,8 @@ internal class TimelineChunk(
|
|||
The key holds the eventId of the repliedTo event.
|
||||
The value holds a set of eventIds of all events replying to this event.
|
||||
*/
|
||||
private val repliedEventsMap = HashMap<String, MutableSet<String>>()
|
||||
// SC: this is upstream reply fallback stuff
|
||||
//private val repliedEventsMap = HashMap<String, MutableSet<String>>()
|
||||
|
||||
private val chunkObjectListener = RealmObjectChangeListener<ChunkEntity> { _, changeSet ->
|
||||
if (changeSet == null) return@RealmObjectChangeListener
|
||||
|
@ -450,13 +451,13 @@ internal class TimelineChunk(
|
|||
fun processTimelineEvent(timelineEvent: TimelineEvent) {
|
||||
if (timelineEvent.root.type == EventType.STATE_ROOM_CREATE) {
|
||||
isLastBackward.set(true)
|
||||
} else if (timelineEvent.root.isReply()) {
|
||||
} /*else if (timelineEvent.root.isReply()) { // SC: this is upstream reply fallback stuff
|
||||
val relatesEventId = timelineEvent.getRelationContent()?.inReplyTo?.eventId
|
||||
if (relatesEventId != null) {
|
||||
val relatedEvents = repliedEventsMap.getOrPut(relatesEventId) { mutableSetOf() }
|
||||
relatedEvents.add(timelineEvent.eventId)
|
||||
}
|
||||
}
|
||||
}*/
|
||||
val transactionId = timelineEvent.root.unsignedData?.transactionId
|
||||
uiEchoManager?.onSyncedEvent(transactionId)
|
||||
}
|
||||
|
@ -575,11 +576,15 @@ internal class TimelineChunk(
|
|||
for (range in modifications) {
|
||||
for (modificationIndex in (range.startIndex until range.startIndex + range.length)) {
|
||||
val updatedEntity = results[modificationIndex] ?: continue
|
||||
// SC: this is upstream reply fallback stuff
|
||||
/*
|
||||
val updatedEventId = updatedEntity.eventId
|
||||
val repliesOfUpdatedEvent = repliedEventsMap.getOrElse(updatedEventId) { emptySet() }.mapNotNull { eventId ->
|
||||
results.where().equalTo(TimelineEventEntityFields.EVENT_ID, eventId).findFirst()
|
||||
}
|
||||
repliesOfUpdatedEvent.plus(updatedEntity).forEach { entityToRebuild ->
|
||||
*/
|
||||
listOf(updatedEntity).forEach { entityToRebuild ->
|
||||
val builtEventIndex = builtEventsIndexes[entityToRebuild.eventId] ?: return@forEach
|
||||
try {
|
||||
builtEvents[builtEventIndex] = entityToRebuild.buildAndDecryptIfNeeded()
|
||||
|
|
Loading…
Add table
Reference in a new issue