Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NickBorgers committed Jan 11, 2024
1 parent 60ff01b commit ffb304d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flows.json
Original file line number Diff line number Diff line change
Expand Up @@ -11116,7 +11116,7 @@
"type": "function",
"z": "95cf961539320dd3",
"name": "Ensure master is home and asleep",
"func": "if (global.get(\"state\").isAnyoneHome.value == false) {\n return null\n}\nif (global.get(\"state\").isMasterAsleep.value == false) {\n return null\n}\n\n// Is master light still on?\nvar isMasterLightOff = global.get(\"state\").isMasterLightOff.value\nif (isMasterLightOff) {\n console.debug(\"Master light turned off; abort!\")\n return null\n}\n\nreturn msg;",
"func": "if (global.get(\"state\").isAnyoneHome.value == false) {\n return null\n}\nif (global.get(\"state\").isMasterAsleep.value == false) {\n return null\n}\n\n// Is master light still on?\nvar isMasterLightsOff = global.get(\"state\").isMasterLightsOff.value\nif (isMasterLightsOff) {\n console.debug(\"Master light turned off; abort!\")\n return null\n}\n\nreturn msg;",
"outputs": 1,
"timeout": "",
"noerr": 0,
Expand Down

0 comments on commit ffb304d

Please sign in to comment.