# HG changeset patch # User souliane # Date 1427925596 -7200 # Node ID 5c3d1d970b949e9657a540d4eed51696cbf59914 # Parent f8ecce11a0bc6a9f59898bcb84fd3e999c59fe7e quick_frontend: keep the contact list groups synchronised on contact deletion diff -r f8ecce11a0bc -r 5c3d1d970b94 frontends/src/quick_frontend/quick_contact_list.py --- a/frontends/src/quick_frontend/quick_contact_list.py Wed Apr 01 23:56:32 2015 +0200 +++ b/frontends/src/quick_frontend/quick_contact_list.py Wed Apr 01 23:59:56 2015 +0200 @@ -208,6 +208,7 @@ @param name: name of the data (can't be "jids") @param value: value to set """ + # FIXME: this is never used, should it be removed? assert name is not 'jids' self._groups[group][name] = value @@ -368,6 +369,8 @@ del self._cache[entity_bare] for group in groups: self._groups[group]['jids'].remove(entity_bare) + if not self._groups[group]['jids']: + self._groups.pop(group) for set_ in (self._selected, self._alerts, self._specials, self._special_extras): to_remove = set() for set_entity in set_: