From 052305bba7badbcfef4416bc2bcbb55ccd7333cd Mon Sep 17 00:00:00 2001 From: Chloe Herd Date: Wed, 22 Oct 2025 14:20:18 -0400 Subject: [PATCH] Prevent premature data clearing --- src/router/methods/error.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/methods/error.js b/src/router/methods/error.js index 42807ce04..aa845d452 100644 --- a/src/router/methods/error.js +++ b/src/router/methods/error.js @@ -34,7 +34,7 @@ export async function handleHardError(errorPayload) { await handleSoftError(errorPayload, true); return; } - } finally { + } catch (exception) { await handleSoftError(errorPayload, true); } }