Skip to content

Commit 956881e

Browse files
committed
include parsing errors in rpa node
1 parent ecc1a19 commit 956881e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

OpenFlowNodeRED/src/nodered/nodes/rpa_nodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export class rpa_workflow_node {
108108
result.payload = data.payload.data;
109109
this.node.send(result);
110110
}
111-
else if (data.payload.command == "invokefailed" || data.payload.command == "invokeaborted") {
111+
else if (data.payload.command == "invokefailed" || data.payload.command == "invokeaborted" || data.payload.command == "error") {
112112
result.payload = data.payload;
113113
this.node.send([null, null, result]);
114114
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.102
1+
0.0.103

0 commit comments

Comments
 (0)