From 2a061fdf54132226d3194c5dc54bfbba38de0a90 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Sun, 14 Apr 2024 14:58:58 +0300 Subject: [PATCH] Fix app init order --- public/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/script.js b/public/script.js index c57d4c93b..27db3022e 100644 --- a/public/script.js +++ b/public/script.js @@ -897,11 +897,11 @@ async function firstLoadInit() { throw new Error('Initialization failed'); } - await getClientVersion(); await readSecretState(); await getSettings(); getSystemMessages(); sendSystemMessage(system_message_types.WELCOME); + await getClientVersion(); initLocales(); initTags(); await getUserAvatars(true, user_avatar);