Fixed Bug 55614 - Client.ExternalLink. ‘404 Not Found’ when opening an external link.

This commit is contained in:
Nikita Gopienko 2022-02-17 15:12:54 +03:00
parent eccb588362
commit ecb5c7fba2

View File

@ -210,11 +210,11 @@ const Editor = () => {
//showLoader(); //showLoader();
const docApiUrl = await getDocServiceUrl(); const docApiUrl = await getDocServiceUrl();
filesSettings = await getSettingsFiles();
try { try {
await authStore.init(true); await authStore.init(true);
user = authStore.userStore.user; user = authStore.userStore.user;
if (user) filesSettings = await getSettingsFiles();
personal = authStore.settingsStore.personal; personal = authStore.settingsStore.personal;
successAuth = !!user; successAuth = !!user;
} catch (e) { } catch (e) {