fix(backend): ノートの検索インデックス条件を調整
This commit is contained in:
parent
b45bc3fd5d
commit
6db37d4fcb
|
@ -95,6 +95,9 @@ export class SearchService {
|
|||
|
||||
@bindThis
|
||||
public async indexNote(note: Note): Promise<void> {
|
||||
if (note.text == null && note.cw == null) return;
|
||||
if (!['home', 'public'].includes(note.visibility)) return;
|
||||
|
||||
if (this.meilisearch) {
|
||||
this.meilisearchNoteIndex!.addDocuments([{
|
||||
id: note.id,
|
||||
|
|
Loading…
Reference in New Issue