online-ics-feed-viewer icon indicating copy to clipboard operation
online-ics-feed-viewer copied to clipboard

Recurring events aren't shown

Open MartinJM opened this issue 3 years ago • 0 comments

Hi,

I noticed that recurring events weren't showing up on the calendar. The following is an example that should show two events, but only shows one in this calendar:

BEGIN:VCALENDAR
PRODID:-
VERSION:2.0
CALSCALE:GREGORIAN
BEGIN:VEVENT
UID:00000000-0000-0000-0000-000000000000
DTSTAMP:20211001T100000Z
DTSTART:20211001T100000Z
DTEND:20211001T110000Z
SUMMARY:Test Event
RRULE:FREQ=WEEKLY;UNTIL=20211009
END:VEVENT
END:VCALENDAR

Since I'm using my own modified fork I fixed it in that, but because I also removed some functionality it cannot be merged just like that. The issue is in the fullcalendar version that is being used. It is fixed in a later version, which requires the event data in a different format. Instead of converting from the old format to the new format I opted to use the ICAL parsing functionality they added, which I think is the easiest solution.

Thank you for providing the repo, Martin

MartinJM avatar Oct 01 '21 19:10 MartinJM