From 17b86bab4744728caf1ae0af7b5c4ac5b2d619eb Mon Sep 17 00:00:00 2001 From: SebastianKrupinski Date: Wed, 12 Feb 2025 16:38:53 -0500 Subject: 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(-) (limited to 'apps') diff --git a/apps/dav/lib/CalDAV/Schedule/IMipService.php b/apps/dav/lib/CalDAV/Schedule/IMipService.php index 69c9e774042..e2844960a23 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipService.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php @@ -1148,7 +1148,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; } -- cgit v1.2.3