There was an error while loading. Please reload this page.
1 parent 556e9ec commit 0eacc4fCopy full SHA for 0eacc4f
1 file changed
apps/dav/lib/CalDAV/Schedule/IMipPlugin.php
@@ -156,6 +156,10 @@ public function schedule(Message $iTipMessage) {
156
$oldVevent = !empty($modified['old']) && is_array($modified['old']) ? array_pop($modified['old']) : null;
157
$isModified = isset($oldVevent);
158
159
+ if (empty($vEvent) && strtoupper($iTipMessage->method) === 'CANCEL') {
160
+ $vEvent = $newEvents->VEVENT ?? null;
161
+ }
162
+
163
// No changed events after all - this shouldn't happen if there is significant change yet here we are
164
// The scheduling status is debatable
165
if (empty($vEvent)) {
0 commit comments