add alertcontact in uptimerobotservice

This commit is contained in:
Giuseppe Nucifora 2022-07-22 11:26:02 +02:00
parent 02dc8f76d1
commit dfbff8b44e

View File

@ -97,10 +97,11 @@ class UptimeRobotApiService
$alertContacts = explode(',', $alertContactsString); $alertContacts = explode(',', $alertContactsString);
foreach ($alertContacts as $alertContactName) { foreach ($alertContacts as $alertContactName) {
if (!empty($alertContactName)) {
$alertContact = $this->alertContactService->findbyName($alertContactName); $alertContact = $this->alertContactService->findbyName($alertContactName);
if ($alertContact instanceof AlertContact) { if ($alertContact instanceof AlertContact) {
$this->alertContacts[] = $alertContact; $this->alertContacts[] = $alertContact;
}
} }
} }
} }