diff --git a/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts b/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts index 3b5153212..fb2a229c2 100644 --- a/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts +++ b/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts @@ -95,6 +95,12 @@ export class OpenGroupServerPoller { this.pollForAllMemberCount, pollForMemberCountInterval ); + + if (this.roomIdsToPoll.size) { + void this.compactPoll(); + void this.previewPerRoomPoll(); + void this.pollForAllMemberCount(); + } } /** diff --git a/ts/session/snode_api/onions.ts b/ts/session/snode_api/onions.ts index 5b264b48d..030a89bca 100644 --- a/ts/session/snode_api/onions.ts +++ b/ts/session/snode_api/onions.ts @@ -443,7 +443,7 @@ const sendOnionRequest = async ( const guardUrl = `https://${nodePath[0].ip}:${nodePath[0].port}${target}`; // no logs for that one as we do need to call insecureNodeFetch to our guardNode // window.log.info('insecureNodeFetch => plaintext for sendOnionRequest'); - console.warn('sendViaOnion payload: ', payload.length); + // console.warn('sendViaOnion payload: ', payload.length); const response = await insecureNodeFetch(guardUrl, guardFetchOptions); return processOnionResponse(reqIdx, response, destCtx.symmetricKey, false, abortSignal);