We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba05429 commit a8f4b04Copy full SHA for a8f4b04
2 files changed
OpenFlowNodeRED/src/nodered/nodes/rpa_nodes.ts
@@ -123,7 +123,11 @@ export class rpa_workflow_node {
123
124
if (data.payload.command == "invokecompleted") {
125
result.payload = data.payload.data;
126
+ if (data.payload == null || data.payload == undefined) { data.payload = {}; }
127
this.node.status({ fill: "green", shape: "dot", text: data.payload.command });
128
+ console.log("********************");
129
+ console.log(result);
130
131
this.node.send(result);
132
}
133
else if (data.payload.command == "invokefailed" || data.payload.command == "invokeaborted" || data.payload.command == "error") {
VERSION
@@ -1 +1 @@
1
-0.0.370
+0.0.371
0 commit comments