Make errors of nodes catchable by a catch node

This commit is contained in:
bvmensvoort
2023-06-11 10:42:38 +02:00
committed by Skylar Sadlier
parent 8a7fba39e8
commit 8ca11f36d8
14 changed files with 44 additions and 44 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ module.exports = function(RED) {
node.status({ fill: "red", shape: "ring", text: "disconnected" });
if (!node.server) {
node.error("No configuration node");
node.error("No configuration node", {});
return;
}