chore: cleanup

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

@ -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) {

@ -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,

@ -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.

Loading…
Cancel
Save