syntex-automation
Advanced tools
Comparing version 1.2.1-b17 to 1.2.1-b18
{ | ||
"name": "syntex-automation", | ||
"version": "1.2.1-b17", | ||
"version": "1.2.1-b18", | ||
"description": "An automation system for your smart home", | ||
@@ -5,0 +5,0 @@ "main": "main.js", |
@@ -605,5 +605,5 @@ module.exports = class Automation | ||
if((block.operation == '>' && block.state[x] <= state[x]) | ||
|| (block.operation == '<' && block.state[x] >= state[x]) | ||
|| (block.operation == '=' && block.state[x] != state[x])) | ||
if((state[x] <= block.state[x] && block.operation == '>') | ||
|| (state[x] >= block.state[x] && block.operation == '<') | ||
|| (state[x] != block.state[x] && block.operation == '=')) | ||
{ | ||
@@ -610,0 +610,0 @@ success = false; |
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