Skip to content

Commit

Permalink
chore: release v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
LynnL4 committed Oct 17, 2024
1 parent 491a3da commit e02d2d7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion nodes/sscma.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@
}
});
RED.events.on('config:add', function (node) {
console.log(node)
console.log(node)
});
</script>
8 changes: 4 additions & 4 deletions nodes/stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ module.exports = function (RED) {
password: config.password
}

node.receive = function(msg) {
node.receive = function (msg) {

}

if (node.client) {
node.client.register(node);
}
node.on('close', function(removed, done) {

node.on('close', function (removed, done) {
if (node.client) {
node.client.deregister(node, done, removed);
node.client = null;
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-sscma",
"version": "0.0.5",
"version": "0.0.6",
"description": "Node-RED nodes for SSCMA",
"repository": {
"type": "git",
Expand Down Expand Up @@ -29,4 +29,4 @@
"engines": {
"node": ">=12"
}
}
}

0 comments on commit e02d2d7

Please sign in to comment.