mirror of
https://github.com/nextcloud/server.git
synced 2026-05-19 16:39:59 -04:00
fix(CalDAV): remove UNKNOWN from room / resource consideration
Signed-off-by: Anna Larch <anna@nextcloud.com>
This commit is contained in:
parent
3496a7ea4d
commit
e32ea9ab37
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