mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-01-04 20:10:14 -06: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