refac: do not wait for update check

This commit is contained in:
Timothy J. Baek 2024-09-27 14:41:29 +02:00
parent 0bd9d59c78
commit 44d768ecf3
1 changed files with 2 additions and 2 deletions

View File

@ -206,10 +206,10 @@
const now = new Date();
if (now - dismissedUpdateToast > 24 * 60 * 60 * 1000) {
await checkForVersionUpdates();
checkForVersionUpdates();
}
} else {
await checkForVersionUpdates();
checkForVersionUpdates();
}
}
await tick();