Add note about rescheduled recurrences

This commit is contained in:
Unrud 2017-08-04 14:58:58 +02:00
parent a6663f19f0
commit 73fb669fd8

View File

@ -277,6 +277,12 @@ def _visit_time_ranges(vobject_item, child_name, range_fn, infinity_fn):
See rfc4791-9.9.
"""
# HACK: According to rfc5545-3.8.4.4 an recurrance that is resheduled
# with Recurrence ID affects the recurrence itself and all following
# recurrences too. This is not respected and client don't seem to bother
# either.
child = getattr(vobject_item, child_name.lower())
def getrruleset(child, ignore=()):