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
This commit is contained in:
Gigi
2025-10-02 10:20:55 +02:00
parent ba76a6a9ef
commit e3efcd4a7c

View File

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