mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 09:58:32 +02:00
content null check in full text search, #3672
This commit is contained in:
parent
1e551581f8
commit
177a67f59b
@ -69,7 +69,7 @@ class NoteContentFulltextExp extends Expression {
|
||||
}
|
||||
}
|
||||
|
||||
if (!content || typeof content !== 'string') {
|
||||
if (!content) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user