From b5f23b0f9baef5e6223afd033b2cf225dcbc239a Mon Sep 17 00:00:00 2001 From: Lennart <18233294+lennart-k@users.noreply.github.com> Date: Mon, 9 Jun 2025 23:23:41 +0200 Subject: [PATCH] Resolve rrule issue --- crates/ical/src/icalendar/event.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/ical/src/icalendar/event.rs b/crates/ical/src/icalendar/event.rs index a50dc99..a44ead3 100644 --- a/crates/ical/src/icalendar/event.rs +++ b/crates/ical/src/icalendar/event.rs @@ -136,7 +136,7 @@ impl EventObject { .clone(); ev.remove_property("DTSTART"); ev.remove_property("DTEND"); - // TODO: Recurrence does not seem to properly include the start + ev.set_property(Property { name: "RECURRENCE-ID".to_string(), value: Some(date.format()),