Mercurial > libervia-backend
diff frontends/src/bridge/DBus.py @ 943:71926ec2114d
core (memory): entities cache improvments:
- entities cache is no more limited to bare jid
- resources are now automatically updated in bare jid cache
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 28 Mar 2014 18:07:17 +0100 |
parents | a9401694d2dc |
children | 723f28cd15c7 |
line wrap: on
line diff
--- a/frontends/src/bridge/DBus.py Fri Mar 28 18:07:13 2014 +0100 +++ b/frontends/src/bridge/DBus.py Fri Mar 28 18:07:17 2014 +0100 @@ -161,8 +161,8 @@ def getParamsUI(self, security_limit=-1, app='', profile_key="@DEFAULT@", callback=None, errback=None): return unicode(self.db_core_iface.getParamsUI(security_limit, app, profile_key, reply_handler=callback, error_handler=lambda err:errback(err._dbus_error_name[len(const_ERROR_PREFIX)+1:]))) - def getPresenceStatus(self, profile_key="@DEFAULT@"): - return self.db_core_iface.getPresenceStatus(profile_key) + def getPresenceStatuses(self, profile_key="@DEFAULT@"): + return self.db_core_iface.getPresenceStatuses(profile_key) def getProfileName(self, profile_key="@DEFAULT@"): return unicode(self.db_core_iface.getProfileName(profile_key))