add alertcontact in uptimerobotservice
This commit is contained in:
parent
02dc8f76d1
commit
dfbff8b44e
@ -97,10 +97,11 @@ class UptimeRobotApiService
|
||||
$alertContacts = explode(',', $alertContactsString);
|
||||
|
||||
foreach ($alertContacts as $alertContactName) {
|
||||
|
||||
$alertContact = $this->alertContactService->findbyName($alertContactName);
|
||||
if ($alertContact instanceof AlertContact) {
|
||||
$this->alertContacts[] = $alertContact;
|
||||
if (!empty($alertContactName)) {
|
||||
$alertContact = $this->alertContactService->findbyName($alertContactName);
|
||||
if ($alertContact instanceof AlertContact) {
|
||||
$this->alertContacts[] = $alertContact;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user