Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(CalDav): alter invitation attachment filename and type
Signed-off-by: SebastianKrupinski <[email protected]>
  • Loading branch information
SebastianKrupinski authored and AndyScherzinger committed Mar 19, 2025
commit 8cc00622271474e759d4528495bb1e267f17ebf4
4 changes: 2 additions & 2 deletions apps/dav/lib/CalDAV/Schedule/IMipPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,8 @@ public function schedule(Message $iTipMessage) {
$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
Expand Down
Loading