diff options
author | Anna Larch <anna@nextcloud.com> | 2024-04-19 21:22:17 +0200 |
---|---|---|
committer | Anna Larch <anna@nextcloud.com> | 2024-04-19 21:22:17 +0200 |
commit | a28f2647837913eacab31c3fac2b943ab8ee9131 (patch) | |
tree | b700733aacd7eac064aaef490a5810dde7f0c7d2 | |
parent | fc560d8ec986402587ae506bbff58e242eb269f7 (diff) | |
download | nextcloud-server-a28f2647837913eacab31c3fac2b943ab8ee9131.tar.gz nextcloud-server-a28f2647837913eacab31c3fac2b943ab8ee9131.zip |
fix(CalDAV): remove UNKNOWN from room / resource consideration
Signed-off-by: Anna Larch <anna@nextcloud.com>
-rw-r--r-- | apps/dav/lib/CalDAV/Schedule/IMipService.php | 2 |
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; } |