From 336fff909919f76231b1abb52ba9213a4d1fcfe3 Mon Sep 17 00:00:00 2001 From: CobriMediaJulien <56324041+CobriMediaJulien@users.noreply.github.com> Date: Sat, 7 Dec 2024 20:11:52 +0100 Subject: [PATCH] Bugfix, Canvas and Mindmap content doesnt show in wuick search and fulltextsearch. --- src/services/search/expressions/note_content_fulltext.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/search/expressions/note_content_fulltext.ts b/src/services/search/expressions/note_content_fulltext.ts index 16291d6176..106d5d3e34 100644 --- a/src/services/search/expressions/note_content_fulltext.ts +++ b/src/services/search/expressions/note_content_fulltext.ts @@ -60,7 +60,7 @@ class NoteContentFulltextExp extends Expression { for (const row of sql.iterateRows(` SELECT noteId, type, mime, content, isProtected FROM notes JOIN blobs USING (blobId) - WHERE type IN ('text', 'code', 'mermaid') AND isDeleted = 0`)) { + WHERE type IN ('text', 'code', 'mermaid', 'canvas', 'mindMap') AND isDeleted = 0`)) { this.findInText(row, inputNoteSet, resultNoteSet); }