Bugfix, Canvas and Mindmap content doesnt show in wuick search and fulltextsearch.

This commit is contained in:
CobriMediaJulien 2024-12-07 20:11:52 +01:00 committed by GitHub
parent 3a4da07b39
commit 336fff9099
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ class NoteContentFulltextExp extends Expression {
for (const row of sql.iterateRows<SearchRow>(`
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);
}