diff options
author | Anna <anna@nextcloud.com> | 2024-04-26 13:16:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-26 13:16:29 +0200 |
commit | 10af08736e9094dd3f7240ec517cea9a0061d5b4 (patch) | |
tree | 73088804ffe6915dc1c26b40a465e8447e5e0400 | |
parent | 94282863cbfbb1c798001d828ddbeb944909f192 (diff) | |
parent | a28f2647837913eacab31c3fac2b943ab8ee9131 (diff) | |
download | nextcloud-server-10af08736e9094dd3f7240ec517cea9a0061d5b4.tar.gz nextcloud-server-10af08736e9094dd3f7240ec517cea9a0061d5b4.zip |
Merge pull request #44938 from nextcloud/fix/remove-unknown-from-imip-service
fix(CalDAV): remove UNKNOWN from room / resource consideration
-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; } |