mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 00:02:54 -04:00
Merge pull request #45053 from nextcloud/backport/44938/stable29
[stable29] fix(CalDAV): remove UNKNOWN from room / resource consideration
This commit is contained in:
commit
70af653dc6
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue