diff options
author | SebastianKrupinski <krupinskis05@gmail.com> | 2025-03-12 09:31:12 -0400 |
---|---|---|
committer | SebastianKrupinski <krupinskis05@gmail.com> | 2025-03-21 16:46:11 -0400 |
commit | b9247bba940d932475f31271286079a30ad898bf (patch) | |
tree | 5cf42ab17a9371c18e621f8c5af2f28d222acdf1 | |
parent | 21fd8b197c4a59fd3aee5b1544ffa4270e45630a (diff) | |
download | nextcloud-server-b9247bba940d932475f31271286079a30ad898bf.tar.gz nextcloud-server-b9247bba940d932475f31271286079a30ad898bf.zip |
fix(CalDav): alter invitation attachment filename and typebackport/51441/stable30
Signed-off-by: SebastianKrupinski <krupinskis05@gmail.com>
-rw-r--r-- | apps/dav/lib/CalDAV/Schedule/IMipPlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php b/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php index 79b625d25b7..a3c3f4cb241 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php @@ -289,8 +289,8 @@ class IMipPlugin extends SabreIMipPlugin { $message->setBodyHtml($template->renderHtml()); $message->setAttachments((new \OCP\Mail\Provider\Attachment( $itip_msg, - 'event.ics', - 'text/calendar; method=' . $iTipMessage->method, + null, + 'text/calendar; name=event.ics; method=' . $iTipMessage->method, true ))); // send message |