Fixes #266: ICS event is off by one month
parent
49cb191254
commit
dbd1721405
|
@ -26,7 +26,7 @@ export default function createNewEventEmail(calEvent: CalendarEvent, options: an
|
|||
|
||||
const icalEventAsString = (calEvent: CalendarEvent): string => {
|
||||
const icsEvent = createEvent({
|
||||
start: dayjs(calEvent.startTime).utc().toArray().slice(0, 6),
|
||||
start: dayjs(calEvent.startTime).utc().toArray().slice(0, 6).map((v, i) => i === 1 ? v + 1 : v),
|
||||
startInputType: 'utc',
|
||||
productId: 'calendso/ics',
|
||||
title: `${calEvent.type} with ${calEvent.attendees[0].name}`,
|
||||
|
|
|
@ -35,7 +35,7 @@ export default function Success(props) {
|
|||
}
|
||||
|
||||
const event = createEvent({
|
||||
start: date.utc().toArray().slice(0, 6),
|
||||
start: date.utc().toArray().slice(0, 6).map((v, i) => i === 1 ? v + 1 : v),
|
||||
startInputType: 'utc',
|
||||
title: props.eventType.title + ' with ' + props.user.name,
|
||||
description: props.eventType.description,
|
||||
|
|
Loading…
Reference in New Issue