From 9007bbed29c63818ccee8e1f2a470ab089fc9e8d Mon Sep 17 00:00:00 2001 From: nicolas Date: Sun, 20 Jun 2021 17:04:00 +0200 Subject: [PATCH] Added links to iCal again --- lib/emails/EventOrganizerMail.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/emails/EventOrganizerMail.ts b/lib/emails/EventOrganizerMail.ts index a5a687ce71..86c23e420b 100644 --- a/lib/emails/EventOrganizerMail.ts +++ b/lib/emails/EventOrganizerMail.ts @@ -13,7 +13,7 @@ export default class EventOrganizerMail extends EventMail { startInputType: 'utc', productId: 'calendso/ics', title: `${this.calEvent.type} with ${this.calEvent.attendees[0].name}`, - description: this.calEvent.description, + description: this.calEvent.description + this.stripHtml(this.getAdditionalBody()) + this.stripHtml(this.getAdditionalFooter()), duration: { minutes: dayjs(this.calEvent.endTime).diff(dayjs(this.calEvent.startTime), 'minute') }, organizer: { name: this.calEvent.organizer.name, email: this.calEvent.organizer.email }, attendees: this.calEvent.attendees.map( (attendee: any) => ({ name: attendee.name, email: attendee.email }) ),