chore(server): fix clipper

This commit is contained in:
Elian Doran 2025-09-29 09:25:31 +03:00
parent 848dc51a7a
commit 4c6a742af7
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -183,7 +183,7 @@ export function processContent(images: Image[], note: BNote, content: string) {
const dom = parse(rewrittenContent);
// Get the content inside the body tag and serialize it
rewrittenContent = dom.querySelector("body")?.innerHTML ?? "";
rewrittenContent = dom.innerHTML ?? "";
return rewrittenContent;
}