@bldgblocks/node-red-contrib-control 0.1.19 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,7 +32,7 @@ module.exports = function(RED) {
32
32
  // Handle reset command with intentional payload requirement
33
33
  if (msg.context === "reset") {
34
34
  if (msg.payload === true) {
35
- count = 0;
35
+ node.runtime.count = 0;
36
36
  updateStatus();
37
37
  if (done) done();
38
38
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bldgblocks/node-red-contrib-control",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Sedona-inspired control nodes for Node-RED",
5
5
  "keywords": [ "node-red", "sedona", "control", "hvac" ],
6
6
  "files": ["nodes/*.js", "nodes/*.html"],