diff options
author | Sebastian Krupinski <165827823+SebastianKrupinski@users.noreply.github.com> | 2025-03-22 12:13:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-22 12:13:48 +0000 |
commit | 03a56d09aec491dfa37878135918e8bd35c748df (patch) | |
tree | 8d4fd88f328ea2bb36a208119a971809b4813e64 | |
parent | 9e4497efcbb1e2e3827ae758f802edf3512ed74f (diff) | |
parent | b9247bba940d932475f31271286079a30ad898bf (diff) | |
download | nextcloud-server-03a56d09aec491dfa37878135918e8bd35c748df.tar.gz nextcloud-server-03a56d09aec491dfa37878135918e8bd35c748df.zip |
Merge pull request #51467 from nextcloud/backport/51441/stable30
[stable30] fix(CalDav): alter invitation attachment filename and type
-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 |