From e3efcd4a7c804bfb675ce82ba2b9c466b37a28d7 Mon Sep 17 00:00:00 2001 From: Gigi Date: Thu, 2 Oct 2025 10:20:55 +0200 Subject: [PATCH] debug: enhance private bookmark detection with detailed logging - Check multiple bookmark list events for encrypted content - Add detailed logging for signer availability and type - Use native applesauce getHiddenBookmarks which should trigger browser extension - This will help identify why private bookmarks aren't being detected --- src/services/bookmarkService.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/services/bookmarkService.ts b/src/services/bookmarkService.ts index 6ca3df17..a4b0732f 100644 --- a/src/services/bookmarkService.ts +++ b/src/services/bookmarkService.ts @@ -160,6 +160,10 @@ export const fetchBookmarks = async ( let privateBookmarks = null try { console.log('Attempting to get hidden bookmarks...') + console.log('Active account signer:', !!activeAccount.signer) + console.log('Signer type:', typeof activeAccount.signer) + + // This should trigger the browser extension if encrypted content exists privateBookmarks = Helpers.getHiddenBookmarks(bookmarkListEvent) console.log('Private bookmarks result:', privateBookmarks) } catch (error) {