typo fix
This commit is contained in:
parent
b420ded943
commit
92f1ccf9bd
@ -68,7 +68,7 @@ class AutomationManager{
|
|||||||
|
|
||||||
if (time() > $value && $automation['executed'] == 0){
|
if (time() > $value && $automation['executed'] == 0){
|
||||||
$run = true;
|
$run = true;
|
||||||
} else if (time() < $value && $automation['executed'] = 1) { //recovery realowing of automation
|
} else if (time() < $value && $automation['executed'] == 1) { //recovery realowing of automation
|
||||||
$restart = true;
|
$restart = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -115,6 +115,7 @@ class AutomationManager{
|
|||||||
|
|
||||||
$subscribers = NotificationManager::getSubscription();
|
$subscribers = NotificationManager::getSubscription();
|
||||||
$i = 0;
|
$i = 0;
|
||||||
|
|
||||||
foreach ($subscribers as $key => $subscriber) {
|
foreach ($subscribers as $key => $subscriber) {
|
||||||
$logManager->write("[NOTIFICATION] SENDING NOTIFICATION TO" . $subscriber['id'] . " was executed" . $i);
|
$logManager->write("[NOTIFICATION] SENDING NOTIFICATION TO" . $subscriber['id'] . " was executed" . $i);
|
||||||
$title = 'Automatization '.$automation['name']." was just executed";
|
$title = 'Automatization '.$automation['name']." was just executed";
|
||||||
|
Loading…
Reference in New Issue
Block a user