From 2adc132c335a834f55c10a433003418d465fada2 Mon Sep 17 00:00:00 2001 From: Moyasee Date: Sat, 15 Nov 2025 16:57:44 +0200 Subject: [PATCH] fix: removed void from main.ts --- src/main/main.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/main.ts b/src/main/main.ts index 81d4f53f..147ed7dd 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -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(); });