Skip to content
Draft
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
5 changes: 5 additions & 0 deletions lib/CalDAV/Schedule/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,11 @@ protected function processICalendarChange($oldObject, VCalendar $newObject, arra
if ($message->scheduleStatus) {
$attendee['SCHEDULE-STATUS'] = $message->getScheduleStatus();
}
// In case change to an existing event is significant, reset participation
// status of attendee to NEEDS-ACTION
if ($message->significantChange) {
$attendee['PARTSTAT'] = "NEEDS-ACTION";
}
unset($attendee['SCHEDULE-FORCE-SEND']);
break;
}
Expand Down