Skip to content
Snippets Groups Projects
Commit 759a856d authored by Adrien Béraud's avatar Adrien Béraud
Browse files

Conversation: don't sort history in swarms

Change-Id: Id922d16128ecf137ee59d5767dfd41ffc6b955df
parent 72ed6d70
No related branches found
No related tags found
No related merge requests found
...@@ -450,7 +450,9 @@ class Conversation : ConversationHistory { ...@@ -450,7 +450,9 @@ class Conversation : ConversationHistory {
@Synchronized @Synchronized
fun sortHistory() { fun sortHistory() {
if (mDirty) { if (mDirty) {
aggregateHistory.sortWith { c1, c2 -> c1.timestamp.compareTo(c2.timestamp) } if (!isSwarm) {
aggregateHistory.sortWith { c1, c2 -> c1.timestamp.compareTo(c2.timestamp) }
}
lastEvent = aggregateHistory.lastOrNull { it.type != Interaction.InteractionType.INVALID } lastEvent = aggregateHistory.lastOrNull { it.type != Interaction.InteractionType.INVALID }
mDirty = false mDirty = false
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment