From affa9951c62b342958ced296bfd60c185d3d0288 Mon Sep 17 00:00:00 2001 From: nicolasferry Date: Wed, 28 Mar 2018 11:40:02 +0200 Subject: [PATCH] fix update --- red/runtime/nodes/flows/Flow.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/red/runtime/nodes/flows/Flow.js b/red/runtime/nodes/flows/Flow.js index 11430c6fcd..e5aac39988 100644 --- a/red/runtime/nodes/flows/Flow.js +++ b/red/runtime/nodes/flows/Flow.js @@ -90,7 +90,7 @@ function Flow(global, flow) { if (flow.nodes.hasOwnProperty(id)) { node = flow.nodes[id]; if (!node.subflow) { - console.log(activeNodes[id]); + console.log("Active nodes:::::::> "+activeNodes[id]); if (!activeNodes[id]) { var j = 0; @@ -146,7 +146,7 @@ function Flow(global, flow) { } } } - }, node, activeNodes); + }, node, this.getActiveNodes); } this.stop = function (stopList) {