Time base automation restart fix

This commit is contained in:
JonatanRek 2019-10-09 10:59:05 +02:00
parent 342f433cf7
commit 9d098217fb
1 changed files with 6 additions and 6 deletions

View File

@ -65,13 +65,13 @@ class AutomationManager{
$onValue = $today->setTime($onValue[0], $onValue[1]);
$value = $today->getTimestamp();
}
if (time() > $value){
if ($automation['executed'] == 0){
$run = true;
} else if (time() < $value && $automation['executed'] = 1) { //recovery realowing of automation
$restart = true;
}
if (time() > $value && $automation['executed'] == 0){
$run = true;
} else if (time() < $value && $automation['executed'] = 1) { //recovery realowing of automation
$restart = true;
}
} else if ($onValue['type'] == 'outHome') {
} else if ($onValue['type'] == 'inHome') {