We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f417899 commit 96c5218Copy full SHA for 96c5218
2 files changed
OpenFlowNodeRED/src/nodered/nodes/workflow_nodes.ts
@@ -445,6 +445,7 @@ export class run_workflow_node {
445
446
result = res[0];
447
result.payload = data.payload;
448
+ result._id = result._originalid;
449
450
this.node.send([null, result]); // ???? why does this not work ?????
451
// this.node.send([null, null, result]);
@@ -498,6 +499,7 @@ export class run_workflow_node {
498
499
this.node.status({ fill: "red", shape: "dot", text: "Unknown workflow " + workflowid });
500
return;
501
}
502
+ msg._originalid = msg._id;
503
var _id = msg._id;
504
var queue: string = workflow.queue;
505
delete msg._id;
VERSION
@@ -1 +1 @@
1
-0.0.470
+0.0.471
0 commit comments