From 35341b522a5dda7a5db3b0329d198fce4678f124 Mon Sep 17 00:00:00 2001 From: Administrator Date: Mon, 8 Jun 2026 03:04:00 +0200 Subject: [PATCH] fix(accounts): allow health check during active uploads + toast when already running --- renderer/app.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/renderer/app.js b/renderer/app.js index e63f596..d28c0cd 100644 --- a/renderer/app.js +++ b/renderer/app.js @@ -2522,8 +2522,10 @@ async function executeHealthCheck(hosters, _mode) { } async function runHealthCheck(mode = 'manual', requestedHosters = null) { - if (healthCheckRunning || (uploading && mode === 'manual')) return []; - // Build check list: all enabled accounts with creds + if (healthCheckRunning) { + if (mode === 'manual') showCopyToast('Account-Check läuft bereits.'); + return []; + } let hosters; if (Array.isArray(requestedHosters) && requestedHosters.length > 0) { hosters = requestedHosters;