# HG changeset patch # User Paul Boddie # Date 1414709077 -3600 # Node ID e8de97cdb2a1df357e3adc5a42d8b007980f27eb # Parent ac41c8e7b3adf822e9aab6a46ccc69c14ea55f1b Permit free/busy updates when replies are sent. diff -r ac41c8e7b3ad -r e8de97cdb2a1 imiptools/handlers/person_outgoing.py --- a/imiptools/handlers/person_outgoing.py Thu Oct 30 21:53:56 2014 +0100 +++ b/imiptools/handlers/person_outgoing.py Thu Oct 30 23:44:37 2014 +0100 @@ -18,7 +18,7 @@ # Check for event using UID. if not self.have_new_object(identity, objtype): - return + return False # Store the object. @@ -66,7 +66,7 @@ self._record("VEVENT", True, True) def reply(self): - self._record("VEVENT", False, False) + self._record("VEVENT", False, True) def request(self): self._record("VEVENT", True, True)