From eb0cf0938d6c7c143b1d961e0feab73ef9366cf9 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Fri, 17 Dec 2021 16:43:16 +1100 Subject: [PATCH] make sure to use cached convos for sync logic otherwise the whole app freezes on a big database --- ts/session/utils/syncUtils.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ts/session/utils/syncUtils.ts b/ts/session/utils/syncUtils.ts index c10957da5..32d460c98 100644 --- a/ts/session/utils/syncUtils.ts +++ b/ts/session/utils/syncUtils.ts @@ -50,8 +50,7 @@ export const syncConfigurationIfNeeded = async () => { return; } - const allConvoCollection = await getAllConversations(); - const allConvos = allConvoCollection.models; + const allConvos = getConversationController().getConversations(); const configMessage = await getCurrentConfigurationMessage(allConvos); try {