Skip to content

Commit

Permalink
fix(chat/messages): load messages even if fetch is ongoing
Browse files Browse the repository at this point in the history
fixes: #8831
  • Loading branch information
osmaczko authored and jrainville committed Jan 4, 2023
1 parent d061b9a commit fe87cba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ui/app/AppLayouts/Chat/stores/MessageStore.qml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ QtObject {
if(!messageModule)
return

if(!messageModule.initialMessagesLoaded ||
root.loadingHistoryMessagesInProgress? root.loadingHistoryMessagesInProgress : false)
if(!messageModule.initialMessagesLoaded)
return

messageModule.loadMoreMessages()
Expand Down

0 comments on commit fe87cba

Please sign in to comment.