File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments