summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/NoteCreateService.ts
diff options
context:
space:
mode:
authorMar0xy <marie@kaifa.ch>2023-11-01 00:14:59 +0100
committerMar0xy <marie@kaifa.ch>2023-11-01 00:14:59 +0100
commit232ac0d94e01ef4c3089ad0be15ae0a6009eba59 (patch)
treee40c7ccb0a68ac0714516e404246bb707c32bf6e /packages/backend/src/core/NoteCreateService.ts
parentmerge: upstream changes (#123) (diff)
downloadsharkey-232ac0d94e01ef4c3089ad0be15ae0a6009eba59.tar.gz
sharkey-232ac0d94e01ef4c3089ad0be15ae0a6009eba59.tar.bz2
sharkey-232ac0d94e01ef4c3089ad0be15ae0a6009eba59.zip
test: debug meilisearch
Diffstat (limited to 'packages/backend/src/core/NoteCreateService.ts')
-rw-r--r--packages/backend/src/core/NoteCreateService.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/backend/src/core/NoteCreateService.ts b/packages/backend/src/core/NoteCreateService.ts
index 34c8d4f8b1..c452892a3f 100644
--- a/packages/backend/src/core/NoteCreateService.ts
+++ b/packages/backend/src/core/NoteCreateService.ts
@@ -819,6 +819,8 @@ export class NoteCreateService implements OnApplicationShutdown {
private index(note: MiNote) {
if (note.text == null && note.cw == null) return;
+ console.error('createIndex');
+
this.searchService.indexNote(note);
}