mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Merge pull request #36898 from nextcloud/fix/36897/recipient-name-string
fix(caldav): convert iMip recipient name to a string
This commit is contained in:
commit
7c477d4028
1 changed files with 1 additions and 1 deletions
|
|
@ -173,7 +173,7 @@ class IMipPlugin extends SabreIMipPlugin {
|
|||
$iTipMessage->scheduleStatus = '5.0; EMail delivery failed';
|
||||
return;
|
||||
}
|
||||
$recipientName = $iTipMessage->recipientName ?: null;
|
||||
$recipientName = $iTipMessage->recipientName ? (string)$iTipMessage->recipientName : null;
|
||||
|
||||
$newEvents = $iTipMessage->message;
|
||||
$oldEvents = $this->getVCalendar();
|
||||
|
|
|
|||
Loading…
Reference in a new issue