# HG changeset patch # User Goffi # Date 1424792921 -3600 # Node ID 8da4735a3c811794b67793f955202c8b025dc87d # Parent 63697f082e8af53b3103e06a909e3bde49d39793 browser side (contact list): fixed forgotten profile argument in presence listener diff -r 63697f082e8a -r 8da4735a3c81 src/browser/sat_browser/contact_list.py --- a/src/browser/sat_browser/contact_list.py Tue Feb 24 14:40:47 2015 +0100 +++ b/src/browser/sat_browser/contact_list.py Tue Feb 24 16:48:41 2015 +0100 @@ -597,8 +597,8 @@ """ return C.bool(self.host.getCachedParam('General', C.SHOW_EMPTY_GROUPS)) - def updatePresence(self, entity, show, priority, statuses): - QuickContactList.updatePresence(self, entity, show, priority, statuses) + def onPresenceUpdate(self, entity, show, priority, statuses, profile): + QuickContactList.onPresenceUpdate(self, entity, show, priority, statuses, profile) entity_bare = entity.bare show = self.getCache(entity_bare, C.PRESENCE_SHOW) # we use cache to have the show nformation of main resource only self._contacts_panel.setState(entity_bare, "availability", show)