Skip to content

Commit d865a2b

Browse files
authored
Merge pull request #50784 from nextcloud/fix/issue-50054-resource-invite-regression
fix: Fix regression in calendar invitation sending
2 parents 8c69bf1 + aded11f commit d865a2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/dav/lib/CalDAV/Schedule/IMipService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1148,7 +1148,7 @@ public function isRoomOrResource(Property $attendee): bool {
11481148
return false;
11491149
}
11501150
$type = $cuType->getValue() ?? 'INDIVIDUAL';
1151-
if (\in_array(strtoupper($type), ['RESOURCE', 'ROOM', 'UNKNOWN'], true)) {
1151+
if (\in_array(strtoupper($type), ['RESOURCE', 'ROOM'], true)) {
11521152
// Don't send emails to things
11531153
return true;
11541154
}

0 commit comments

Comments
 (0)