Always fetch locales when initiating client

This commit is contained in:
CherryKitten 2022-12-13 20:04:29 +01:00
parent 582a9d510e
commit c6aad324a0
No known key found for this signature in database
GPG Key ID: 0B696A86A853E955
1 changed files with 22 additions and 27 deletions

View File

@ -22,13 +22,9 @@
renderError('SOMETHING_HAPPENED_IN_PROMISE', e);
};
//#region Detect language & fetch translations
const v = localStorage.getItem('v') || VERSION;
//#region Detect language & fetch translations
const localeVersion = localStorage.getItem('localeVersion');
const localeOutdated = (localeVersion == null || localeVersion !== v);
if (!localStorage.hasOwnProperty('locale') || localeOutdated) {
const supportedLangs = LANGS;
let lang = localStorage.getItem('lang');
if (lang == null || !supportedLangs.includes(lang)) {
@ -52,7 +48,6 @@
renderError('LOCALE_FETCH');
return;
}
}
//#endregion
//#region Script