fix: drop label prefix from WikiNoteEvent FTS content

Missed in the earlier label-removal pass. Index bare title/summary/content.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01RFdWREvyvixRXnmNXNzmmN
This commit is contained in:
Claude
2026-06-18 20:07:23 +00:00
parent d184e4369c
commit 79f6bf1b7c
@@ -78,7 +78,7 @@ class WikiNoteEvent(
IForkableEvent,
RootScope,
SearchableEvent {
override fun indexableContent() = "title: " + title() + "\nsummary: " + summary() + "\n" + content
override fun indexableContent() = listOfNotNull(title(), summary(), content).joinToString("\n")
override fun eventHints(): List<EventIdHint> {
val eHints = tags.mapNotNull(MarkedETag::parseAsHint)