forked from GitHub-Mirror/riotX-android
Fix / Day separator flickering in timeline
Sending events were not filtered, so sending events like reactions would make the day separator appear
This commit is contained in:
parent
17a4a86ad1
commit
b92cc524b6
@ -289,7 +289,9 @@ internal class DefaultTimeline(
|
|||||||
private fun buildSendingEvents(): List<TimelineEvent> {
|
private fun buildSendingEvents(): List<TimelineEvent> {
|
||||||
val sendingEvents = ArrayList<TimelineEvent>()
|
val sendingEvents = ArrayList<TimelineEvent>()
|
||||||
if (hasReachedEnd(Timeline.Direction.FORWARDS)) {
|
if (hasReachedEnd(Timeline.Direction.FORWARDS)) {
|
||||||
roomEntity?.sendingTimelineEvents?.forEach {
|
roomEntity?.sendingTimelineEvents
|
||||||
|
?.filter { allowedTypes?.contains(it.type) ?: false }
|
||||||
|
?.forEach {
|
||||||
val timelineEvent = timelineEventFactory.create(it)
|
val timelineEvent = timelineEventFactory.create(it)
|
||||||
sendingEvents.add(timelineEvent)
|
sendingEvents.add(timelineEvent)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user