aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAnna Larch <anna@nextcloud.com>2024-04-19 21:22:17 +0200
committerAnna <anna@nextcloud.com>2024-06-04 12:32:09 +0200
commitfc33ee05272bb0e622c95fd30e0f6db4c5368e33 (patch)
treeb3a79a1ea6bf18cd57d71b8b73da843f66568910 /apps
parent13c4787193f4a498202ad1b26840aa0745c93c27 (diff)
downloadnextcloud-server-fc33ee05272bb0e622c95fd30e0f6db4c5368e33.tar.gz
nextcloud-server-fc33ee05272bb0e622c95fd30e0f6db4c5368e33.zip
fix(CalDAV): remove UNKNOWN from room / resource consideration
Signed-off-by: Anna Larch <anna@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/CalDAV/Schedule/IMipService.php2
1 files changed, 1 insertions, 1 deletions
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;
}