Closed
Description
Extracting specific bug from PR #134:
...a bug in
update_events
: the loop in
Lines 332 to 334 in bcb2b6d
will fall through, if no event matchinguid
exists, and proceed to modify or overwrite whateverevent
was last in the loop.
Refactoring the code to use self._get_entity(self._EVENT, uid)
should ensure an error is raised when the uid is not matched, and prevent any event modification.