diff --git a/ts/components/session/ActionsPanel.tsx b/ts/components/session/ActionsPanel.tsx index 98d0cdde0..5ced06163 100644 --- a/ts/components/session/ActionsPanel.tsx +++ b/ts/components/session/ActionsPanel.tsx @@ -141,7 +141,7 @@ const setupTheme = (dispatch: Dispatch) => { }; // Do this only if we created a new Session ID, or if we already received the initial configuration message -const triggerSyncIfIfNeeded = async () => { +const triggerSyncIfNeeded = async () => { const didWeHandleAConfigurationMessageAlready = (await getItemById(hasSyncedInitialConfigurationItem))?.value || false; if (didWeHandleAConfigurationMessageAlready) { @@ -174,7 +174,7 @@ const doAppStartUp = (dispatch: Dispatch) => { void OpenGroupManagerV2.getInstance().startPolling(); // trigger a sync message if needed for our other devices - void triggerSyncIfIfNeeded(); + void triggerSyncIfNeeded(); void loadDefaultRooms(); diff --git a/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts b/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts index fb2a229c2..912671ea4 100644 --- a/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts +++ b/ts/opengroup/opengroupV2/OpenGroupServerPoller.ts @@ -409,7 +409,7 @@ const handleCompactPollResults = async ( serverUrl: string, results: Array ) => { - console.warn('compoll res', results); + // console.warn('compoll res', results); await Promise.all( results.map(async res => { const convoId = getOpenGroupV2ConversationId(serverUrl, res.roomId); diff --git a/ts/receiver/closedGroups.ts b/ts/receiver/closedGroups.ts index 23dde05a4..2e146c304 100644 --- a/ts/receiver/closedGroups.ts +++ b/ts/receiver/closedGroups.ts @@ -643,7 +643,7 @@ function addMemberToZombies( if (isAlreadyZombie) { return false; } - console.warn('Marking user ', userToAdd.key, ' as a zombie'); + // console.warn('Marking user ', userToAdd.key, ' as a zombie'); convo.set('zombies', [...zombies, userToAdd.key]); return true; } diff --git a/ts/session/utils/Attachments.ts b/ts/session/utils/Attachments.ts index 28ce6a686..63a39301f 100644 --- a/ts/session/utils/Attachments.ts +++ b/ts/session/utils/Attachments.ts @@ -102,7 +102,7 @@ export class AttachmentUtils { pointer.id = uploadToV2Result.fileId; pointer.url = uploadToV2Result.fileUrl; } else { - console.warn('upload to file server v2 failed'); + window.log.warn('upload to file server v2 failed'); } } else { const result = isAvatar diff --git a/ts/session/utils/syncUtils.ts b/ts/session/utils/syncUtils.ts index 4bfbf7ec7..9d69a4181 100644 --- a/ts/session/utils/syncUtils.ts +++ b/ts/session/utils/syncUtils.ts @@ -195,7 +195,7 @@ export const getCurrentConfigurationMessage = async (convos: Array