# HG changeset patch # User Goffi # Date 1467131222 -7200 # Node ID 8156f2116dc952877d5028de0dfc906cf2e417b1 # Parent bdc6a5b079224857cbf9eb968b4f697778f9743c plugin XEP-0054: fixed getCard calls diff -r bdc6a5b07922 -r 8156f2116dc9 src/plugins/plugin_xep_0054.py --- a/src/plugins/plugin_xep_0054.py Tue Jun 28 18:26:21 2016 +0200 +++ b/src/plugins/plugin_xep_0054.py Tue Jun 28 18:27:02 2016 +0200 @@ -405,11 +405,11 @@ self.plugin_parent.updateCache(self.parent, from_jid, 'avatar', hash_) else: log.debug(u'New avatar found for [{}], requesting vcard'.format(from_jid.full())) - self.plugin_parent.getCard(from_jid, self.parent.profile) + self.plugin_parent.getCard(self.parent, from_jid) else: if os.path.exists(filename): log.debug(u"avatar for {} already in cache".format(from_jid.full())) else: log.error(u"Avatar for [{}] should be in cache but it is not ! We get it".format(from_jid.full())) - self.plugin_parent.getCard(from_jid, self.parent.profile) + self.plugin_parent.getCard(self.parent, from_jid)