aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2025-02-17 09:31:52 +0100
committerGitHub <noreply@github.com>2025-02-17 09:31:52 +0100
commitcd6671c7ddb22bebe747e75375d0d22d36101841 (patch)
tree388d6dc6141fc438014ac6361da39306a5dfe987 /apps
parentb534d83e39749500cb3df625a5243bb98170d48d (diff)
parent17b86bab4744728caf1ae0af7b5c4ac5b2d619eb (diff)
downloadnextcloud-server-cd6671c7ddb22bebe747e75375d0d22d36101841.tar.gz
nextcloud-server-cd6671c7ddb22bebe747e75375d0d22d36101841.zip
Merge pull request #50802 from nextcloud/backport/50784/stable31
[stable31] fix: Fix regression in calendar invitation sending
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 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;
}