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