diff options
author | SebastianKrupinski <krupinskis05@gmail.com> | 2025-03-12 09:31:12 -0400 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2025-03-20 00:53:43 +0100 |
commit | 8cc00622271474e759d4528495bb1e267f17ebf4 (patch) | |
tree | 802d2fd340be91415dfedfc48332a7130d240e7c | |
parent | ec7c8231821c158bc42e8e07f520322185cae6bd (diff) | |
download | nextcloud-server-backport/51441/stable31.tar.gz nextcloud-server-backport/51441/stable31.zip |
fix(CalDav): alter invitation attachment filename and typebackport/51441/stable31
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 0aecb18ce80..7e79388c53a 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php @@ -275,8 +275,8 @@ class IMipPlugin extends SabreIMipPlugin { $message->setBodyHtml($template->renderHtml()); $message->setAttachments((new Attachment( $itip_msg, - 'event.ics', - 'text/calendar; method=' . $iTipMessage->method, + null, + 'text/calendar; name=event.ics; method=' . $iTipMessage->method, true ))); // send message |