mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 15:05:31 +08:00
fix handlers import, closes #2900
This commit is contained in:
parent
de1c76ee3c
commit
b4ac41eff8
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,6 @@ const entityChangesService = require('../../services/entity_changes');
|
|||
const AbstractEntity = require("./abstract_entity");
|
||||
const NoteRevision = require("./note_revision");
|
||||
const TaskContext = require("../../services/task_context");
|
||||
const handlers = require("../../services/handlers");
|
||||
|
||||
const LABEL = 'label';
|
||||
const RELATION = 'relation';
|
||||
|
@ -1143,6 +1142,7 @@ class Note extends AbstractEntity {
|
|||
}
|
||||
|
||||
// needs to be run before branches and attributes are deleted and thus attached relations disappear
|
||||
const handlers = require("../../services/handlers");
|
||||
handlers.runAttachedRelations(this, 'runOnNoteDeletion', this);
|
||||
taskContext.noteDeletionHandlerTriggered = true;
|
||||
|
||||
|
|
Loading…
Reference in a new issue