Ensure startup works by moving initial refresh to botWrapper

This commit is contained in:
Matthias 2022-11-26 15:00:28 +01:00
parent f8ff5745f2
commit 3c324a9da8
2 changed files with 1 additions and 1 deletions

View File

@ -201,7 +201,6 @@ export default defineComponent({
onMounted(async () => {
await settingsStore.loadUIVersion();
pingInterval.value = window.setInterval(botStore.pingAll, 60000);
botStore.allRefreshFull();
});
settingsStore.$subscribe((_, state) => {

View File

@ -334,4 +334,5 @@ export function initBots() {
});
botStore.selectFirstBot();
botStore.startRefresh();
botStore.allRefreshFull();
}