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) =>