Skip to content

Commit

Permalink
fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasferry committed Mar 28, 2018
1 parent 2d7d625 commit affa995
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions red/runtime/nodes/flows/Flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -146,7 +146,7 @@ function Flow(global, flow) {
}
}
}
}, node, activeNodes);
}, node, this.getActiveNodes);
}

this.stop = function (stopList) {
Expand Down

0 comments on commit affa995

Please sign in to comment.