mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-08-27 21:55:15 -05:00
fix: iCal link double slash (#2846)
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user