fix(pwa): keep bootstrap watchdog active on startup errors

Prevents failed app bootstrap from being marked as successful so the boot watchdog can continue recovery attempts instead of suppressing them.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-01 22:14:07 +02:00
parent ee94a5be10
commit 2c8a858c89
+1 -1
View File
@@ -91,5 +91,5 @@ void bootstrap().catch((err) => {
renderBootstrapError(
'Die App konnte nicht gestartet werden. Bitte neu laden oder die App vollständig beenden und erneut öffnen.',
)
window.__KDB_APP_BOOTSTRAPPED = true
window.__KDB_APP_BOOTSTRAPPED = false
})