From dce3c0ae52e55e56aeeb11e03e9c123ff836c4fb Mon Sep 17 00:00:00 2001 From: Krille Date: Thu, 1 Feb 2024 08:00:33 +0100 Subject: [PATCH] chore: Wait for device keys before ask bootstrap --- lib/pages/chat_list/chat_list.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/pages/chat_list/chat_list.dart b/lib/pages/chat_list/chat_list.dart index db0708ffb..4b0c069fb 100644 --- a/lib/pages/chat_list/chat_list.dart +++ b/lib/pages/chat_list/chat_list.dart @@ -619,6 +619,7 @@ class ChatListController extends State final client = Matrix.of(context).client; await client.roomsLoading; await client.accountDataLoading; + await client.userDeviceKeysLoading; if (client.prevBatch == null) { await client.onSync.stream.first;