minor sync fix for fulltext

This commit is contained in:
zadam
2019-04-11 21:44:35 +02:00
parent 896776516b
commit ae8f4ffbbe
3 changed files with 11 additions and 6 deletions

View File

@@ -78,10 +78,10 @@ async function updateNoteContent(entity, sourceId) {
await sql.replace("note_contents", entity);
await syncTableService.addNoteContentSync(entity.noteId, sourceId);
noteFulltextService.triggerNoteFulltextUpdate(entity.noteId);
});
noteFulltextService.triggerNoteFulltextUpdate(entity.noteId);
log.info("Update/sync note content for noteId=" + entity.noteId);
}
}