content null check in full text search, #3672

This commit is contained in:
zadam 2023-03-06 23:23:56 +01:00
parent 1e551581f8
commit 177a67f59b

View File

@ -69,7 +69,7 @@ class NoteContentFulltextExp extends Expression {
}
}
if (!content || typeof content !== 'string') {
if (!content) {
return;
}