Merge pull request #268 from emrysal/hotfix/ics-month-error

Fixes #266: ICS event is off by one month
pull/283/head
Bailey Pumfleet 2021-06-18 17:04:37 +01:00 committed by GitHub
commit 81246edab2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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}`,

View File

@ -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,