Bump symfony/http-kernel from 4.4.43 to 4.4.50 #1

Open
dependabot[bot] wants to merge 15 commits from dependabot/composer/symfony/http-kernel-4.4.50 into master
Showing only changes of commit dfbff8b44e - Show all commits

View File

@ -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;
}
}
}
}