From b3d24d1c2f593a6b05c3237ba3cdb45f056b5166 Mon Sep 17 00:00:00 2001 From: limina1 Date: Sun, 7 Sep 2025 19:27:03 -0400 Subject: [PATCH] remove content from 30040 --- src/lib/utils/publication_tree_processor.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/utils/publication_tree_processor.ts b/src/lib/utils/publication_tree_processor.ts index 51c4fc4..c0248e0 100644 --- a/src/lib/utils/publication_tree_processor.ts +++ b/src/lib/utils/publication_tree_processor.ts @@ -600,7 +600,8 @@ function createIndexEvent( event.tags = tags; console.log(`[TreeProcessor] Index event tags:`, tags.slice(0, 10)); - event.content = generateIndexContent(title, segments); + // NKBIP-01: Index events must have empty content + event.content = ""; return event; } @@ -823,7 +824,8 @@ function createIndexEventForSection(section: HierarchicalSegment, ndk: NDK): NDK }); event.tags = tags; - event.content = `${section.content}\n\n${section.children.length} subsections available.`; + // NKBIP-01: Index events must have empty content + event.content = ""; return event; } \ No newline at end of file