fix: fix profile image order since reversing the list order

This commit is contained in:
Jonathan Rainville 2021-02-24 11:37:40 -05:00 committed by Iuri Matias
parent 8ee5abe570
commit f52cc984d6

View File

@ -302,7 +302,8 @@ ScrollView {
outgoingStatus: model.outgoingStatus outgoingStatus: model.outgoingStatus
responseTo: model.responseTo responseTo: model.responseTo
authorCurrentMsg: msgDelegate.ListView.section authorCurrentMsg: msgDelegate.ListView.section
authorPrevMsg: msgDelegate.ListView.previousSection // The previous message is actually the nextSection since we reversed the list order
authorPrevMsg: msgDelegate.ListView.nextSection
imageClick: imagePopup.openPopup.bind(imagePopup) imageClick: imagePopup.openPopup.bind(imagePopup)
messageId: model.messageId messageId: model.messageId
emojiReactions: model.emojiReactions emojiReactions: model.emojiReactions