diff --git a/lib/CalEventParser.ts b/lib/CalEventParser.ts index 4668fb77..5261a120 100644 --- a/lib/CalEventParser.ts +++ b/lib/CalEventParser.ts @@ -102,7 +102,7 @@ export default class CalEventParser { */ public asRichEvent(): CalendarEvent { const eventCopy: CalendarEvent = { ...this.calEvent }; - eventCopy.description = this.getRichDescription(); + eventCopy.description = this.getRichDescriptionHtml(); return eventCopy; } }