From 83743c5a9ff166881ee5e1ba659dd705ad6b1c97 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 16 Oct 2025 23:30:18 +0200 Subject: [PATCH] fix: remove decrypt queue that was blocking highlight signing - The global decrypt queue in bookmarkProcessing was getting stuck - Caused all NIP-46 operations to hang indefinitely - Decrypt already has per-call timeouts; queue was unnecessary - Highlights should now sign immediately without waiting for bookmarks --- src/services/bookmarkProcessing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/bookmarkProcessing.ts b/src/services/bookmarkProcessing.ts index c2501f5a..e41808c9 100644 --- a/src/services/bookmarkProcessing.ts +++ b/src/services/bookmarkProcessing.ts @@ -156,7 +156,7 @@ export async function collectBookmarksFromEvents( console.log('[bunker] ✅ nip04 decrypt succeeded') } } catch (err) { - console.log('[bunker] ❌ nip04 decrypt failed:', err) + console.log('[bunker] ❌ nip04 decrypt failed (or timed out):', err) } }