CrashHandler: Increment timeout for trying to recover

This commit is contained in:
Nuckyz 2024-05-08 18:37:27 -03:00
parent b1cc67a860
commit b7c1b495af
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -104,7 +104,7 @@ export default definePlugin({
shouldAttemptRecover = false;
// This is enough to avoid a crash loop
setTimeout(() => shouldAttemptRecover = true, 500);
setTimeout(() => shouldAttemptRecover = true, 1000);
} catch { }
try {