syntex-automation
Advanced tools
Comparing version 1.0.3-b5 to 1.0.3-b6
@@ -23,5 +23,5 @@ let TypeManager = require('./type-manager'); | ||
{ | ||
eventLock = obj.eventLock || []; | ||
positiveFired = obj.positiveFired || []; | ||
negativeFired = obj.negativeFired || []; | ||
eventLock = data.eventLock || []; | ||
positiveFired = data.positiveFired || []; | ||
negativeFired = data.negativeFired || []; | ||
} | ||
@@ -28,0 +28,0 @@ else |
{ | ||
"name": "syntex-automation", | ||
"version": "1.0.3-b5", | ||
"version": "1.0.3-b6", | ||
"description": "An automation system for your smart home", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
@@ -22,3 +22,3 @@ const store = require('json-fs-store'); | ||
{ | ||
if(obj.platforms[i].automationDirectory != null && obj.platforms[i].port != null) | ||
if(obj.platforms[i].baseDirectory != null && obj.platforms[i].port != null) | ||
{ | ||
@@ -25,0 +25,0 @@ this.plugins.push({ name : obj.platforms[i].platform, port : obj.platforms[i].port }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22231