From a28f2647837913eacab31c3fac2b943ab8ee9131 Mon Sep 17 00:00:00 2001 From: Anna Larch Date: Fri, 19 Apr 2024 21:22:17 +0200 Subject: [PATCH] fix(CalDAV): remove UNKNOWN from room / resource consideration Signed-off-by: Anna Larch --- apps/dav/lib/CalDAV/Schedule/IMipService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dav/lib/CalDAV/Schedule/IMipService.php b/apps/dav/lib/CalDAV/Schedule/IMipService.php index 4cd859d79ac..95c6b5739af 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipService.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php @@ -682,7 +682,7 @@ class IMipService { return false; } $type = $cuType->getValue() ?? 'INDIVIDUAL'; - if (\in_array(strtoupper($type), ['RESOURCE', 'ROOM', 'UNKNOWN'], true)) { + if (\in_array(strtoupper($type), ['RESOURCE', 'ROOM'], true)) { // Don't send emails to things return true; }