mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
fix runOnNoteContentChange event
This commit is contained in:
parent
35338e9ec6
commit
9cdcbb3125
@ -12,6 +12,7 @@ const TaskContext = require("../../services/task_context");
|
||||
const dayjs = require("dayjs");
|
||||
const utc = require('dayjs/plugin/utc');
|
||||
const NotFoundError = require("../../errors/not_found_error.js");
|
||||
const eventService = require("../../services/events.js");
|
||||
dayjs.extend(utc);
|
||||
|
||||
const LABEL = 'label';
|
||||
@ -246,6 +247,8 @@ class BNote extends AbstractBeccaEntity {
|
||||
*/
|
||||
setContent(content, opts) {
|
||||
this._setContent(content, opts);
|
||||
|
||||
eventService.emit(eventService.NOTE_CONTENT_CHANGE, { entity: this });
|
||||
}
|
||||
|
||||
setJsonContent(content) {
|
||||
|
@ -229,10 +229,6 @@ function createNewNote(params) {
|
||||
entity: note
|
||||
});
|
||||
|
||||
eventService.emit(eventService.NOTE_CONTENT_CHANGE, {
|
||||
entity: note
|
||||
});
|
||||
|
||||
eventService.emit(eventService.ENTITY_CREATED, {
|
||||
entityName: 'branches',
|
||||
entity: branch
|
||||
@ -570,8 +566,6 @@ function downloadImages(noteId, content) {
|
||||
|
||||
asyncPostProcessContent(origNote, updatedContent);
|
||||
|
||||
eventService.emit(eventService.NOTE_CONTENT_CHANGE, { entity: origNote });
|
||||
|
||||
console.log(`Fixed the image links for note '${noteId}' to the offline saved.`);
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user