From 96dfcea7b8eff51a3acc71f832571014b1140f71 Mon Sep 17 00:00:00 2001 From: lanyuanxiaoyao Date: Tue, 7 Jan 2025 18:25:38 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dnode=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E9=9A=8Finstance=E8=BF=9B=E5=85=A5=E4=B8=8B=E4=B8=80=E8=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lanyuanxiaoyao/flowable/core/manager/FlowableManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flowable-core/src/main/java/com/lanyuanxiaoyao/flowable/core/manager/FlowableManager.java b/flowable-core/src/main/java/com/lanyuanxiaoyao/flowable/core/manager/FlowableManager.java index 2cc2b92..583712f 100644 --- a/flowable-core/src/main/java/com/lanyuanxiaoyao/flowable/core/manager/FlowableManager.java +++ b/flowable-core/src/main/java/com/lanyuanxiaoyao/flowable/core/manager/FlowableManager.java @@ -202,7 +202,7 @@ public abstract class FlowableManager { callListeners(node.getListeners(), listener -> listener.onActionComplete(instance, node, action)); if (FlowableNode.Type.AUTOMATIC.equals(nextNode.getType())) { - automaticAction(instance, node); + automaticAction(instance, nextNode); } }