fix: iCal link double slash (#2846)

This commit is contained in:
abysse-code
2026-03-01 09:10:39 -05:00
committed by GitHub
parent 3e4f6041e6
commit 3633685ae3

View File

@@ -31,7 +31,7 @@ function eventsAsICal(events: Array<CalendarEvent>): ics.ReturnObject {
function eventInfoAsICalEvent(event: CalendarEvent): ics.EventAttributes {
const startDate = new Date(event.at);
const eventLink = `${SENDOU_INK_BASE_URL}/${event.url}`;
const eventLink = `${SENDOU_INK_BASE_URL}${event.url}`;
return {
title: event.name,