adamgibbons / ics

iCalendar (ics) file generator for node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to exclude dates when repeating an event?

devboomtech opened this issue · comments

How to exclude dates when repeating an event?

I got this working by appending the EXDATE to the RRULE

https://icalendar.org/iCalendar-RFC-5545/3-8-5-1-exception-date-times.html

Make sure you add a line break as it's a separate attribute to the event

...
RRULE:FREQ=DAILY;INTERVAL=1;UNTIL=20221126T000000Z
EXDATE:20221123T210000
END:VEVENT
END:VCALENDAR

Resolved by #246