diff --git a/ts/session/apis/open_group_api/sogsv3/sogsV3ClearInbox.ts b/ts/session/apis/open_group_api/sogsv3/sogsV3ClearInbox.ts index dc17e30a4..6adc1288c 100644 --- a/ts/session/apis/open_group_api/sogsv3/sogsV3ClearInbox.ts +++ b/ts/session/apis/open_group_api/sogsv3/sogsV3ClearInbox.ts @@ -1,4 +1,5 @@ import AbortController from 'abort-controller'; +import { getConversationController } from '../../../conversations'; import { OpenGroupRequestCommonType } from '../opengroupV2/ApiUtil'; import { getOpenGroupV2ConversationId } from '../utils/OpenGroupUtils'; import { @@ -7,7 +8,6 @@ import { OpenGroupBatchRow, sogsBatchSend, } from './sogsV3BatchPoll'; -import { getConversationController } from '../../../conversations'; type OpenGroupClearInboxResponse = { deleted: number; @@ -21,42 +21,40 @@ export const clearInbox = async (roomInfos: OpenGroupRequestCommonType): Promise if (!conversation) { throw new Error(`clearInbox Matching conversation not found in db ${conversationId}`); - } else { - const options: Array = [ - { - type: 'inbox', - inbox: { - type: 'delete', - }, + } + const options: Array = [ + { + type: 'inbox', + inbox: { + type: 'delete', }, - ]; + }, + ]; - const result = await sogsBatchSend( - roomInfos.serverUrl, - new Set([roomInfos.roomId]), - new AbortController().signal, - options, - 'batch' - ); + const result = await sogsBatchSend( + roomInfos.serverUrl, + new Set([roomInfos.roomId]), + new AbortController().signal, + options, + 'batch' + ); - if (!result) { - throw new Error(`Could not clearInbox, res is invalid for ${conversationId}`); - } + if (!result) { + throw new Error(`Could not clearInbox, res is invalid for ${conversationId}`); + } - const rawMessage = - (result.body && (result.body[0].body as OpenGroupClearInboxResponse)) || null; - if (!rawMessage) { - throw new Error(`clearInbox parsing failed for ${conversationId}`); - } + const rawMessage = (result.body && (result.body[0].body as OpenGroupClearInboxResponse)) || null; + if (!rawMessage) { + throw new Error(`clearInbox parsing failed for ${conversationId}`); + } - try { - if (batchGlobalIsSuccess(result) && batchFirstSubIsSuccess(result)) { - success = true; - window.log.info(`clearInbox ${rawMessage.deleted} messages deleted for ${conversationId} `); - } - } catch (e) { - window?.log?.error(`clearInbox Can't decode JSON body for ${conversationId}`); + try { + if (batchGlobalIsSuccess(result) && batchFirstSubIsSuccess(result)) { + success = true; + window.log.info(`clearInbox ${rawMessage.deleted} messages deleted for ${conversationId} `); } + } catch (e) { + window?.log?.error(`clearInbox Can't decode JSON body for ${conversationId}`); } if (!success) { diff --git a/ts/util/releaseFeature.ts b/ts/util/releaseFeature.ts index e415c3e14..4acf60c4d 100644 --- a/ts/util/releaseFeature.ts +++ b/ts/util/releaseFeature.ts @@ -1,4 +1,3 @@ -import { isEmpty } from 'lodash'; import { GetNetworkTime } from '../session/apis/snode_api/getNetworkTime'; import { FEATURE_RELEASE_TIMESTAMPS } from '../session/constants'; import { ConfigurationSync } from '../session/utils/job_runners/jobs/ConfigurationSyncJob'; @@ -103,7 +102,7 @@ async function checkIsUserConfigFeatureReleased() { async function checkIsDisappearMessageV2FeatureReleased() { return ( (await checkIsFeatureReleased('disappearing_messages')) || - !isEmpty(process.env.SESSION_FORCE_DISAPPEAR_V2_ENABLED) // FIXME to remove after QA + !!process.env.MULTI?.toLocaleLowerCase().includes('disappear_v2') // FIXME to remove after QA ); } @@ -115,7 +114,7 @@ function isUserConfigFeatureReleasedCached(): boolean { function isDisappearMessageV2FeatureReleasedCached(): boolean { return ( !!isDisappearingMessageFeatureReleased || - !isEmpty(process.env.SESSION_FORCE_DISAPPEAR_V2_ENABLED) // FIXME to remove after QA + !!process.env.MULTI?.toLocaleLowerCase().includes('disappear_v2') // FIXME to remove after QA ); }