Skip to content
Snippets Groups Projects
Verified Commit 12832b3c authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix loading spinner when switching to a fully loaded room

fixes #754
parent 8beeba8e
No related branches found
No related tags found
No related merge requests found
Pipeline #1961 passed
......@@ -819,8 +819,10 @@ EventStore::decryptionError(std::string id)
void
EventStore::fetchMore()
{
if (noMoreMessages)
if (noMoreMessages) {
emit fetchedMore();
return;
}
mtx::http::MessagesOpts opts;
opts.room_id = room_id_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment