fix(desktop/chat) fetch more messages not working
Fetch more messages is spinning indefinitely when fetch more messages button is clicked and messages are never displayed Closes #4168
This commit is contained in:
parent
66840da455
commit
af887af4df
|
@ -28,6 +28,7 @@ Item {
|
|||
Separator {
|
||||
id: sep1
|
||||
}
|
||||
|
||||
Loader {
|
||||
id: fetchLoaderIndicator
|
||||
anchors.top: sep1.bottom
|
||||
|
@ -59,6 +60,7 @@ Item {
|
|||
fetchLoaderIndicator.active = true;
|
||||
fetchMoreButton.visible = false;
|
||||
fetchDate.visible = false;
|
||||
timer.start();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue