We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfcf494 commit 089286dCopy full SHA for 089286d
1 file changed
library/Notifications/Daemon/Daemon.php
@@ -263,7 +263,7 @@ protected function processNotifications(): void
263
/** @var IncidentHistory $notification */
264
$notificationsToProcess = [];
265
foreach ($notifications as $notification) {
266
- if (isset($connections[$notification->contact_id])) {
+ if ($notification->contact_id !== null && isset($connections[$notification->contact_id])) {
267
ObjectsRendererHook::register($notification->incident->object);
268
$notificationsToProcess[] = $notification;
269
0 commit comments