Merge pull request #268 from emrysal/hotfix/ics-month-error
Fixes #266: ICS event is off by one monthpull/283/head
commit
81246edab2
|
@ -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}`,
|
||||
|
|
|
@ -38,7 +38,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: eventName,
|
||||
description: props.eventType.description,
|
||||
|
|
Loading…
Reference in New Issue