Merge pull request #10551 from vector-im/t3chguy/i18n_config_default

Load config.json before loading language so default can apply
This commit is contained in:
David Baker 2019-08-14 15:51:54 +01:00 committed by GitHub
commit 3b908f4a33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -195,11 +195,6 @@ async function loadApp() {
await loadOlm();
await loadLanguage();
const fragparts = parseQsFromFragment(window.location);
const params = parseQs(window.location);
// set the platform for react sdk
if (window.ipcRenderer) {
console.log("Using Electron platform");
@ -239,6 +234,12 @@ async function loadApp() {
// granular settings are loaded correctly and to avoid duplicating the override logic for the theme.
SdkConfig.put(configJson);
// Load language after loading config.json so that settingsDefaults.language can be applied
await loadLanguage();
const fragparts = parseQsFromFragment(window.location);
const params = parseQs(window.location);
// don't try to redirect to the native apps if we're
// verifying a 3pid (but after we've loaded the config)
// or if the user is following a deep link
@ -430,6 +431,7 @@ function loadOlm() {
async function loadLanguage() {
const prefLang = SettingsStore.getValue("language", null, /*excludeDefault=*/true);
console.log("DEBUG", prefLang);
let langs = [];
if (!prefLang) {
@ -439,6 +441,7 @@ async function loadLanguage() {
} else {
langs = [prefLang];
}
console.log("DEBUG1", langs);
try {
await languageHandler.setLanguage(langs);
document.documentElement.setAttribute("lang", languageHandler.getCurrentLanguage());