fix startup status detect

This commit is contained in:
josc146
2023-05-25 00:51:45 +08:00
parent 5729d9fc62
commit 6f629dbc55
6 changed files with 24 additions and 24 deletions

View File

@@ -33,7 +33,7 @@ export async function startup() {
if (commonStore.settings.autoUpdatesCheck) // depends on config settings
checkUpdate();
getStatus(500).then(status => { // depends on config api port
getStatus(1000).then(status => { // depends on config api port
if (status)
commonStore.setStatus(status);
});