preserve UIDs from main calendar
1 file changed, 1 insertion(+), 0 deletions(-)
changed files
M mycal.py → mycal.py
@@ -73,6 +73,7 @@ dtend = fixup_date(component.get('dtend', component.get('dtstart')).dt) if dtstart >= start_date and dtend <= end_date: ev = Event() ev.add('summary', f'{config.name} Busy') + ev.uid = component.get('uid') ev.DTSTART = dtstart ev.DTEND = dtend output.add_component(ev)