mirror of
https://github.com/zadam/trilium.git
synced 2025-11-15 17:55:52 +01:00
content null check in full text search, #3672
This commit is contained in:
@@ -69,7 +69,7 @@ class NoteContentFulltextExp extends Expression {
|
||||
}
|
||||
}
|
||||
|
||||
if (!content || typeof content !== 'string') {
|
||||
if (!content) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user