fix: fix message order being messed up because of the messageId

This commit is contained in:
Jonathan Rainville 2020-09-17 16:29:00 -04:00 committed by Iuri Matias
parent 3efcc63efb
commit 7dce940e68
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ ScrollView {
DelegateModel {
id: messageListDelegate
property var lessThan: [
function(left, right) { return left.clock < right.clock && left.messageId < right.messageId }
function(left, right) { return left.clock < right.clock }
]
property int sortOrder: 0