From 07dfdb3350b79906bb0709cdb507a85cb2bf0fb9 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 18 Oct 2022 17:46:12 +1100 Subject: [PATCH] fix: remove spinner of first poll of sogs even when not selected --- .../open_group_api/opengroupV2/OpenGroupServerPoller.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ts/session/apis/open_group_api/opengroupV2/OpenGroupServerPoller.ts b/ts/session/apis/open_group_api/opengroupV2/OpenGroupServerPoller.ts index 99e925faa..0ffafa19e 100644 --- a/ts/session/apis/open_group_api/opengroupV2/OpenGroupServerPoller.ts +++ b/ts/session/apis/open_group_api/opengroupV2/OpenGroupServerPoller.ts @@ -322,6 +322,8 @@ export class OpenGroupServerPoller { // ==> At this point all those results need to trigger conversation updates, so update what we have to update await handleBatchPollResults(this.serverUrl, batchPollResults, subrequestOptions); + // this is very hacky but is needed to remove the spinner of an opengroup conversation while it loads the first patch of messages. + // Absolutely not the react way, but well. for (const room of subrequestOptions) { if (room.type === 'messages' && !room.messages?.sinceSeqNo && room.messages?.roomId) { const conversationKey = getOpenGroupV2ConversationId( @@ -346,6 +348,13 @@ export class OpenGroupServerPoller { }) ); }); + } else { + window.inboxStore?.dispatch( + markConversationInitialLoadingInProgress({ + conversationKey, + isInitialFetchingInProgress: false, + }) + ); } } }, 5000);