Skip to content

Commit f4a90b2

Browse files
committed
check of recurrence id is present
- fixes #15
1 parent b4c4d05 commit f4a90b2

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

recurring_ical_events.py

+7-4
Original file line numberDiff line numberDiff line change
@@ -286,12 +286,15 @@ def between(self, start, stop): # TODO: add parameters from time_span_contains_e
286286
def add_event(event):
287287
"""Add an event and check if it was edited."""
288288
same_events = events_by_id[event.get("UID", default_uid)] # TODO: test what comes first
289-
recurrence_id = event.get("RECURRENCE-ID", event["DTSTART"]).dt
289+
recurrence_id = event.get("RECURRENCE-ID", event["DTSTART"]).dt # TODO: this is still wrong: what if there are different events at the same time?
290290
other = same_events.get(recurrence_id, None)
291291
if other: # TODO: test that this is independet of order
292-
if event["SEQUENCE"] < other["SEQUENCE"]:
293-
return
294-
events.remove(other)
292+
event_sequence = event.get("SEQUENCE", None)
293+
other_sequence = other.get("SEQUENCE", None)
294+
if event_sequence is not None and other_sequence is not None:
295+
if event["SEQUENCE"] < other["SEQUENCE"]:
296+
return
297+
events.remove(other)
295298
same_events[recurrence_id] = event
296299
events.append(event)
297300

test/test_issue_15.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ def test_rdate_does_not_double_rrule_entry(calendars):
2020

2121
def test_sequence_is_not_present(calendars):
2222
events = calendars.issue_15_duplicated_events.at("20130803")
23-
assert len(events) == 1
23+
assert len(events) == 3
2424

0 commit comments

Comments
 (0)