fix: removed void from main.ts

This commit is contained in:
Moyasee
2025-11-15 16:57:44 +02:00
parent c4852b89f1
commit 2adc132c33

View File

@@ -60,7 +60,9 @@ export const loadState = async () => {
void syncDownloadSourcesFromApi();
// Check for new download options on startup (if enabled)
void DownloadSourcesChecker.checkForChanges();
(async () => {
await DownloadSourcesChecker.checkForChanges();
})();
WSClient.connect();
});