initialize core only if its active

This commit is contained in:
nklhrstv 2020-03-25 11:22:27 +02:00
parent 447bbce375
commit f0dcd8afe4

View file

@ -31,7 +31,7 @@ const App = () => {
}
});
}
setCoreInitialized(services.core.active || services.core.error instanceof Error);
setCoreInitialized(services.core.active);
};
services.shell.on('stateChanged', onShellStateChanged);
services.core.on('stateChanged', onCoreStateChanged);