mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Bugfix: show connected state after reconnect
This commit is contained in:
parent
6d4c865611
commit
2e5eced601
@ -57,6 +57,10 @@ module.exports = function(RED) {
|
|||||||
node.warn("reconnecting");
|
node.warn("reconnecting");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
node.client.on("reconnect", function() {
|
||||||
|
node.status({fill:"green",shape:"dot",text:"connected"});
|
||||||
|
});
|
||||||
|
|
||||||
node.client.on("error", function(error) {
|
node.client.on("error", function(error) {
|
||||||
node.status({fill:"grey",shape:"dot",text:"error"});
|
node.status({fill:"grey",shape:"dot",text:"error"});
|
||||||
node.warn(error);
|
node.warn(error);
|
||||||
|
Loading…
Reference in New Issue
Block a user