Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix for calendar invites not being sent in some cases
See nextcloud/calendar#5706
and FossifyOrg/Calendar#135

This issue was previously fixed in
#44938, but seems to have
reverted in #45547

Signed-off-by: Brett Bethke <[email protected]>
  • Loading branch information
bb4242 committed Jan 6, 2025
commit 11ed5f9e836b2f51f682a07fb70c7d30b0f67ae3
2 changes: 1 addition & 1 deletion apps/dav/lib/CalDAV/Schedule/IMipService.php
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ public function isRoomOrResource(Property $attendee): bool {
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;
}
Expand Down
Loading