Fix app init order
This commit is contained in:
parent
2ccb6dc275
commit
2a061fdf54
|
@ -897,11 +897,11 @@ async function firstLoadInit() {
|
||||||
throw new Error('Initialization failed');
|
throw new Error('Initialization failed');
|
||||||
}
|
}
|
||||||
|
|
||||||
await getClientVersion();
|
|
||||||
await readSecretState();
|
await readSecretState();
|
||||||
await getSettings();
|
await getSettings();
|
||||||
getSystemMessages();
|
getSystemMessages();
|
||||||
sendSystemMessage(system_message_types.WELCOME);
|
sendSystemMessage(system_message_types.WELCOME);
|
||||||
|
await getClientVersion();
|
||||||
initLocales();
|
initLocales();
|
||||||
initTags();
|
initTags();
|
||||||
await getUserAvatars(true, user_avatar);
|
await getUserAvatars(true, user_avatar);
|
||||||
|
|
Loading…
Reference in New Issue