Skip to content
Snippets Groups Projects
Commit d997a579 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

messagelistview: fix message loading

On some cases (like many edition/reply) the atYBeginning is still true
causing the view to not load messages anymore (after retrying it loads
as the beginning)

Change-Id: I9da474224f6fc0a39cf405c8bfe9d5201849ea64
parent cc3b5a7c
Branches
Tags beta/20230119
No related merge requests found
...@@ -297,7 +297,7 @@ JamiListView { ...@@ -297,7 +297,7 @@ JamiListView {
} }
function onMoreMessagesLoaded() { function onMoreMessagesLoaded() {
if (root.contentHeight < root.height) { if (root.contentHeight < root.height || root.atYBeginning) {
root.loadMoreMsgsIfNeeded() root.loadMoreMsgsIfNeeded()
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment