CrashHandler: Increment timeout for trying to recover

This commit is contained in:
Nuckyz 2024-05-08 18:37:27 -03:00 committed by Luna
parent 590a785fd3
commit 0fb43a5027

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 {