Fix script condition issue (Thanks @bart274) (#1972)
This commit is contained in:
parent
f2176e54ba
commit
2a972b7fe3
2 changed files with 5 additions and 4 deletions
|
@ -118,7 +118,7 @@ class Script():
|
|||
def _check_condition(self, action, variables):
|
||||
"""Test if condition is matching."""
|
||||
self.last_action = action.get(CONF_ALIAS, action[CONF_CONDITION])
|
||||
check = condition.from_config(action)(self.hass, False)
|
||||
check = condition.from_config(action)(self.hass, variables)
|
||||
self._log("Test condition {}: {}".format(self.last_action, check))
|
||||
return check
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue