Mercurial > libervia-web
changeset 1112:f287fc8bb31a
browser (contact list): renamed entityToShow to entityVisible following Quick Frontend change
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 24 Jun 2018 22:21:25 +0200 |
parents | 4d1c4bd4931a |
children | cdd389ef97bc |
files | src/browser/sat_browser/contact_list.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/browser/sat_browser/contact_list.py Thu Jun 21 01:19:57 2018 +0200 +++ b/src/browser/sat_browser/contact_list.py Sun Jun 24 22:21:25 2018 +0200 @@ -179,7 +179,7 @@ self._group_panel.remove(group) ### JIDS ### - to_show = [jid_ for jid_ in self.contact_list.roster if self.contact_list.entityToShow(jid_) and jid_ != self.contact_list.whoami.bare] + to_show = [jid_ for jid_ in self.contact_list.roster if self.contact_list.entityVisible(jid_) and jid_ != self.contact_list.whoami.bare] to_show.sort() self._contacts_panel.setList(to_show)