From 17b86bab4744728caf1ae0af7b5c4ac5b2d619eb Mon Sep 17 00:00:00 2001 From: SebastianKrupinski Date: Wed, 12 Feb 2025 16:38:53 -0500 Subject: [PATCH] fix: Fix regression in calendar invitation sending Signed-off-by: SebastianKrupinski --- 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 69c9e774042a5..e2844960a231c 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipService.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php @@ -1148,7 +1148,7 @@ public function isRoomOrResource(Property $attendee): bool { 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; }