diff --git a/ts/util/i18n/shared.ts b/ts/util/i18n/shared.ts index 6c0f9392c..cffdc3da7 100644 --- a/ts/util/i18n/shared.ts +++ b/ts/util/i18n/shared.ts @@ -73,7 +73,19 @@ export function getBrowserLocale() { const userLocaleDashed = browserLocale.replaceAll('_', '-'); try { - const matchingLocales = Intl.DateTimeFormat.supportedLocalesOf(userLocaleDashed); + let matchingLocales: Array = []; + try { + matchingLocales = Intl.DateTimeFormat.supportedLocalesOf(userLocaleDashed); + } catch (innerError) { + // some users have a locale setup with a ':' in it. + // see https://github.com/oxen-io/session-desktop/issues/3221 + const semiColonIndex = userLocaleDashed.indexOf(':'); + if (semiColonIndex > -1) { + matchingLocales = Intl.DateTimeFormat.supportedLocalesOf( + userLocaleDashed.substring(0, semiColonIndex) + ); + } + } const mappingTo = matchingLocales?.[0] || 'en';