Skip to content

Commit

Permalink
fix status of get value node
Browse files Browse the repository at this point in the history
  • Loading branch information
hobbyquaker committed Apr 8, 2019
1 parent 6559a01 commit 90a442b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nodes/ccu-get-value.js
Expand Up @@ -20,7 +20,7 @@ module.exports = function (RED) {
value = this.ccu.values[address];
}

this.status({fill: 'green', shape: 'ring', text: String(value)});
this.status({fill: 'green', shape: 'ring', text: String(value.payload)});

if (config.setPropType === 'cmsg') {
Object.assign(msg, value);
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "node-red-contrib-ccu",
"version": "2.0.6",
"version": "2.0.7",
"description": "Node-RED Nodes for the Homematic CCU",
"repository": "https://github.com/rdmtc/node-red-contrib-ccu",
"keywords": [
Expand Down

0 comments on commit 90a442b

Please sign in to comment.