From 55e44dcc9cdee338291ba79b57e23703302d3cb2 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 17 Oct 2025 00:05:53 +0200 Subject: [PATCH] debug: increase decrypt timeout to 15 seconds - Give bunker operations more time to respond - Will help determine if this is a timing issue or a fundamental limitation - Still logging timeout errors for visibility --- src/services/bookmarkProcessing.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/services/bookmarkProcessing.ts b/src/services/bookmarkProcessing.ts index 243929a4..5f99f314 100644 --- a/src/services/bookmarkProcessing.ts +++ b/src/services/bookmarkProcessing.ts @@ -12,9 +12,9 @@ type HiddenContentSigner = Parameters[1] type UnlockMode = Parameters[2] /** - * Wrap a decrypt promise with a timeout to prevent hanging + * Wrap a decrypt promise with a timeout to prevent hanging (using 15s timeout for bunker) */ -function withDecryptTimeout(promise: Promise, timeoutMs = 5000): Promise { +function withDecryptTimeout(promise: Promise, timeoutMs = 15000): Promise { return Promise.race([ promise, new Promise((_, reject) =>