diff --git a/io/stomp/18-stomp.js b/io/stomp/18-stomp.js index 8689a1e0..ab2ac7d7 100644 --- a/io/stomp/18-stomp.js +++ b/io/stomp/18-stomp.js @@ -57,6 +57,10 @@ module.exports = function(RED) { node.warn("reconnecting"); }); + node.client.on("reconnect", function() { + node.status({fill:"green",shape:"dot",text:"connected"}); + }); + node.client.on("error", function(error) { node.status({fill:"grey",shape:"dot",text:"error"}); node.warn(error);