From b4ac41eff8f4c36f4fd1c578fe7b47b68ea7450d Mon Sep 17 00:00:00 2001 From: zadam Date: Mon, 6 Jun 2022 21:59:44 +0200 Subject: [PATCH] fix handlers import, closes #2900 --- src/becca/entities/note.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/becca/entities/note.js b/src/becca/entities/note.js index 0a945bf0f..662a0ba78 100644 --- a/src/becca/entities/note.js +++ b/src/becca/entities/note.js @@ -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;