Bugfix: show connected state after reconnect (#986)

This commit is contained in:
Olivier Verhaegen 2023-04-07 09:46:51 +02:00 committed by GitHub
parent 6d4c865611
commit 471422adfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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);