chore: cleanup

pull/3206/head
Audric Ackermann 8 months ago
parent 1460220fd1
commit 92f7bbe97d

@ -95,7 +95,6 @@ async function joinOpenGroupV2(
if (!conversation) { if (!conversation) {
window?.log?.warn('Failed to join open group v2'); window?.log?.warn('Failed to join open group v2');
// TODO - Check that this is the room name
throw new Error(window.i18n('communityJoinError')); throw new Error(window.i18n('communityJoinError'));
} }
@ -180,7 +179,6 @@ export async function joinOpenGroupV2WithUIEvents(
return true; return true;
} }
if (showToasts) { if (showToasts) {
// TODO - Check that this is the room name
ToastUtils.pushToastError('communityJoinError', window.i18n('communityJoinError')); ToastUtils.pushToastError('communityJoinError', window.i18n('communityJoinError'));
} }
if (errorHandler) { if (errorHandler) {
@ -191,7 +189,6 @@ export async function joinOpenGroupV2WithUIEvents(
} catch (error) { } catch (error) {
window?.log?.warn('got error while joining open group:', error.message); window?.log?.warn('got error while joining open group:', error.message);
if (showToasts) { if (showToasts) {
// TODO - Check that this is the room name
ToastUtils.pushToastError('communityJoinError', window.i18n('communityJoinError')); ToastUtils.pushToastError('communityJoinError', window.i18n('communityJoinError'));
} }
if (errorHandler) { if (errorHandler) {

@ -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. * 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, incrementBadSnodeCountOrDrop,
decodeOnionResult, decodeOnionResult,
lokiOnionFetch, lokiOnionFetch,
getPathString,
sendOnionRequestSnodeDest, sendOnionRequestSnodeDest,
processOnionResponse, processOnionResponse,
processOnionResponseV4, processOnionResponseV4,

@ -154,11 +154,11 @@ export const setupi18n = (locale: Locale, dictionary: LocalizerDictionary) => {
throw new Error('i18n: messages parameter is required'); throw new Error('i18n: messages parameter is required');
} }
if (window.inboxStore) { if (window?.inboxStore) {
window.inboxStore.dispatch(updateLocale(locale)); 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. * Retrieves a localized message string, substituting variables where necessary.

Loading…
Cancel
Save