Skip to content
Snippets Groups Projects
Commit 7a16e05b authored by Konstantinos Sideris's avatar Konstantinos Sideris
Browse files

Initialize views before room list

parent 29bd8b71
No related branches found
No related tags found
No related merge requests found
......@@ -550,6 +550,7 @@ ChatPage::initialSyncCompleted(const mtx::responses::Sync &response)
QtConcurrent::run([this, res = std::move(response)]() {
try {
cache_->saveState(res);
emit initializeViews(std::move(res.rooms));
emit initializeRoomList(cache_->roomInfo());
} catch (const lmdb::error &e) {
qWarning() << "cache error:" << QString::fromStdString(e.what());
......@@ -557,7 +558,6 @@ ChatPage::initialSyncCompleted(const mtx::responses::Sync &response)
return;
}
emit initializeViews(std::move(res.rooms));
emit continueSync(cache_->nextBatchToken());
emit contentLoaded();
});
......
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