fix: getBrowserLocale: strip to semicolon if found

pull/3224/head
Audric Ackermann 6 months ago
parent 714ee46b31
commit 2a185350bb
No known key found for this signature in database

@ -73,7 +73,19 @@ export function getBrowserLocale() {
const userLocaleDashed = browserLocale.replaceAll('_', '-');
try {
const matchingLocales = Intl.DateTimeFormat.supportedLocalesOf(userLocaleDashed);
let matchingLocales: Array<string> = [];
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';

Loading…
Cancel
Save