# HG changeset patch # User Paul Boddie # Date 1423330420 -3600 # Node ID bca36db624cea5b4b918dd81c413a46feb8cc005 # Parent 4fcc448bb80f8a0d739880c75dad0e16ccd7183d Respect organiser PARTSTAT when updating free/busy information. diff -r 4fcc448bb80f -r bca36db624ce imiptools/handlers/person_outgoing.py --- a/imiptools/handlers/person_outgoing.py Sat Feb 07 17:38:38 2015 +0100 +++ b/imiptools/handlers/person_outgoing.py Sat Feb 07 18:33:40 2015 +0100 @@ -75,7 +75,7 @@ periods = self.obj.get_periods() freebusy = self.store.get_freebusy(identity) - if from_organiser or attr.get("PARTSTAT") != "DECLINED": + if attr.get("PARTSTAT") != "DECLINED": self.update_freebusy(freebusy, identity, periods) else: self.remove_from_freebusy(freebusy, identity)