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
This commit is contained in:
Gigi
2025-10-16 23:30:18 +02:00
parent 0b8f88ea1d
commit 83743c5a9f

View File

@@ -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)
}
}