From e5815686a9ed91043d3bfbd52ece898b8ce05433 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Wed, 14 Aug 2024 15:02:45 +0800 Subject: [PATCH] Add try/catch fallback if file fails to load Could be the file is not there or something wrong with the connection. Still good to include this try/catch --- src/utils/lang.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/utils/lang.js b/src/utils/lang.js index 0a80e896..6afc6cd7 100644 --- a/src/utils/lang.js +++ b/src/utils/lang.js @@ -33,9 +33,15 @@ export async function activateLang(lang) { i18n.activate(DEFAULT_LANG); console.log('💬 ACTIVATE LANG', DEFAULT_LANG, lang); } else { - const { messages } = await import(`../locales/${lang}.po`); - i18n.loadAndActivate({ locale: lang, messages }); - console.log('💬 ACTIVATE LANG', lang, messages); + try { + const { messages } = await import(`../locales/${lang}.po`); + i18n.loadAndActivate({ locale: lang, messages }); + console.log('💬 ACTIVATE LANG', lang, messages); + } catch (e) { + // Fallback to default language + i18n.activate(DEFAULT_LANG); + console.log('💬 ACTIVATE LANG', DEFAULT_LANG, lang); + } } }