Skip to content

Commit a86f8d6

Browse files
authored
Merge pull request #2485 from pj-gridx/fix-ical-export
fix: use correct SEQUENCE value in iCal export
2 parents 5c12f9d + 8cefe51 commit a86f8d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/webapp/app/routes/_layout+/bookings.$bookingId.overview.cal[.ics].ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export async function loader({ request, context, params }: LoaderFunctionArgs) {
9191
"BEGIN:VEVENT",
9292
`SUMMARY:${summary}`,
9393
`UID:${booking.id}`,
94-
`SEQUENCE:${Date.now()}`,
94+
`SEQUENCE:0`,
9595
"STATUS:CONFIRMED",
9696
"TRANSP:TRANSPARENT",
9797
`DTSTART:${formattedFromDate}`,

0 commit comments

Comments
 (0)