Skip to content

Commit 8ba04e5

Browse files
fixup! fix: iMip reply from outlook.com does not contain organizer property
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
1 parent cbf41b0 commit 8ba04e5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lib/private/Calendar/Manager.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,8 @@ public function handleIMipRequest(
340340
return false;
341341
}
342342
$userId = substr($principalUri, 17);
343-
return $this->handleIMip($userId, $calendarData);
343+
$options = ['recipient' => $recipient];
344+
return $this->handleIMip($userId, $calendarData, $options);
344345
}
345346

346347
/**
@@ -359,7 +360,8 @@ public function handleIMipReply(
359360
return false;
360361
}
361362
$userId = substr($principalUri, 17);
362-
return $this->handleIMip($userId, $calendarData);
363+
$options = ['recipient' => $recipient];
364+
return $this->handleIMip($userId, $calendarData, $options);
363365
}
364366

365367
/**
@@ -379,7 +381,8 @@ public function handleIMipCancel(
379381
return false;
380382
}
381383
$userId = substr($principalUri, 17);
382-
return $this->handleIMip($userId, $calendarData);
384+
$options = ['recipient' => $recipient];
385+
return $this->handleIMip($userId, $calendarData, $options);
383386
}
384387

385388
public function createEventBuilder(): ICalendarEventBuilder {

0 commit comments

Comments
 (0)