Mercurial > libervia-backend
diff sat_frontends/quick_frontend/quick_contact_list.py @ 2987:8990ed9aad31
quick_frontend (contact list): fixed `nick` use for groupchat:
during the profile connection workflow, joined rooms are retrieved, then presence are
filled, all asynchronously. In some cases, all rooms may not be joined when presence are
filled, resulting in cache being already filled with a `nick` when cache is set for the
room itself. Because of that, a `nick` may be displayed in contact list instead of MUC local
part. This patch fixes it by removing `nick` if it exists when cache a MUC room.
fix 305
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 05 Jul 2019 15:58:15 +0200 |
parents | bad0b4280b77 |
children | ab2696e34d29 |
line wrap: on
line diff
--- a/sat_frontends/quick_frontend/quick_contact_list.py Tue Jul 02 19:36:27 2019 +0200 +++ b/sat_frontends/quick_frontend/quick_contact_list.py Fri Jul 05 15:58:15 2019 +0200 @@ -498,6 +498,8 @@ else: self._specials.add(entity) cache[C.CONTACT_MAIN_RESOURCE] = None + if 'nick' in cache: + del cache['nick'] # now the attributes we keep in cache # XXX: if entity is a full jid, we store the value for the resource only