Socket
Socket
Sign inDemoInstall

node-red-contrib-deconz

Package Overview
Dependencies
Maintainers
2
Versions
146
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-red-contrib-deconz - npm Package Compare versions

Comparing version 2.1.1 to 2.1.2

7

CHANGELOG.md

@@ -10,2 +10,9 @@ # Changelog

## [2.1.2] - 2021-11-26 ![Relative date](https://img.shields.io/date/1637939322?label=)
### Fixed
- Fix formatting value of ContactSensorState for HomeKit.
([@WildPhilippAppeared](https://github.com/WildPhilippAppeared) - #180)
## [2.1.1] - 2021-11-25 ![Relative date](https://img.shields.io/date/1637877535?label=)

@@ -12,0 +19,0 @@

2

package.json
{
"name": "node-red-contrib-deconz",
"version": "2.1.1",
"version": "2.1.2",
"description": "deCONZ connectivity nodes for node-red",

@@ -5,0 +5,0 @@ "keywords": [

@@ -188,6 +188,6 @@ const dotProp = require("dot-prop");

if (dotProp.has(rawEvent, 'state.vibration')) {
return dotProp.has(rawEvent, 'state.vibration') ? 1 : 0;
return dotProp.get(rawEvent, 'state.vibration') ? 1 : 0;
}
if (dotProp.has(rawEvent, 'state.open')) {
return dotProp.has(rawEvent, 'state.open') ? 1 : 0;
return dotProp.get(rawEvent, 'state.open') ? 1 : 0;
}

@@ -194,0 +194,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc