diff options
author | SebastianKrupinski <krupinskis05@gmail.com> | 2025-02-12 16:38:53 -0500 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-02-13 20:11:28 +0000 |
commit | 978f0f542b223311ecb33b324be247b62341d9e7 (patch) | |
tree | 80510eec6352663f5d247c6a89b568ffce0df521 /apps | |
parent | 393eba8ea85890c1558af608cca110ce01e7cbea (diff) | |
download | nextcloud-server-978f0f542b223311ecb33b324be247b62341d9e7.tar.gz nextcloud-server-978f0f542b223311ecb33b324be247b62341d9e7.zip |
fix: Fix regression in calendar invitation sendingbackport/50784/stable30
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
Diffstat (limited to 'apps')
-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 ed9b2a0f40a..81367d76ebe 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipService.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php @@ -1158,7 +1158,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; } |