mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-03-21 18:04:39 -05:00
fix: iCal link double slash (#2846)
This commit is contained in:
parent
3e4f6041e6
commit
3633685ae3
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user