From 92f7bbe97dd27dfff63c04e4dec5e0033bc57707 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 20 Aug 2024 10:01:32 +1000 Subject: [PATCH] chore: cleanup --- .../apis/open_group_api/opengroupV2/JoinOpenGroupV2.ts | 3 --- ts/session/apis/snode_api/onions.ts | 5 +---- ts/util/i18n.ts | 6 +++--- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/ts/session/apis/open_group_api/opengroupV2/JoinOpenGroupV2.ts b/ts/session/apis/open_group_api/opengroupV2/JoinOpenGroupV2.ts index bc3190e9b..a7ff2a7a3 100644 --- a/ts/session/apis/open_group_api/opengroupV2/JoinOpenGroupV2.ts +++ b/ts/session/apis/open_group_api/opengroupV2/JoinOpenGroupV2.ts @@ -95,7 +95,6 @@ async function joinOpenGroupV2( if (!conversation) { window?.log?.warn('Failed to join open group v2'); - // TODO - Check that this is the room name throw new Error(window.i18n('communityJoinError')); } @@ -180,7 +179,6 @@ export async function joinOpenGroupV2WithUIEvents( return true; } if (showToasts) { - // TODO - Check that this is the room name ToastUtils.pushToastError('communityJoinError', window.i18n('communityJoinError')); } if (errorHandler) { @@ -191,7 +189,6 @@ export async function joinOpenGroupV2WithUIEvents( } catch (error) { window?.log?.warn('got error while joining open group:', error.message); if (showToasts) { - // TODO - Check that this is the room name ToastUtils.pushToastError('communityJoinError', window.i18n('communityJoinError')); } if (errorHandler) { diff --git a/ts/session/apis/snode_api/onions.ts b/ts/session/apis/snode_api/onions.ts index 2b90217a5..aa47ec82c 100644 --- a/ts/session/apis/snode_api/onions.ts +++ b/ts/session/apis/snode_api/onions.ts @@ -1110,9 +1110,7 @@ async function sendOnionRequestSnodeDest( }); } -function getPathString(pathObjArr: Array<{ ip: string; port: number }>): string { - return pathObjArr.map(node => `${node.ip}:${node.port}`).join(', '); -} + /** * If the fetch throws a retryable error we retry this call with a new path at most 3 times. If another error happens, we return it. If we have a result we just return it. @@ -1174,7 +1172,6 @@ export const Onions = { incrementBadSnodeCountOrDrop, decodeOnionResult, lokiOnionFetch, - getPathString, sendOnionRequestSnodeDest, processOnionResponse, processOnionResponseV4, diff --git a/ts/util/i18n.ts b/ts/util/i18n.ts index cb657196e..16fbc12b7 100644 --- a/ts/util/i18n.ts +++ b/ts/util/i18n.ts @@ -154,11 +154,11 @@ export const setupi18n = (locale: Locale, dictionary: LocalizerDictionary) => { throw new Error('i18n: messages parameter is required'); } - if (window.inboxStore) { + if (window?.inboxStore) { window.inboxStore.dispatch(updateLocale(locale)); - window.log.info('Loaded dictionary dispatch'); + i18nLog('Loaded dictionary dispatch'); } - window.log.info('i18n setup'); + i18nLog('i18n setup'); /** * Retrieves a localized message string, substituting variables where necessary.