# HG changeset patch # User Goffi # Date 1496521493 -7200 # Node ID 074c2f157dc97cec13dcc042cae9a6b7de0a28ff # Parent 0ffa8ba0857cd2b7ac866f0c73035785b7ee492f plugin XEP-0054: fixed not transmitted arguments in getAvatar diff -r 0ffa8ba0857c -r 074c2f157dc9 src/plugins/plugin_exp_command_export.py --- a/src/plugins/plugin_exp_command_export.py Mon May 22 23:58:26 2017 +0200 +++ b/src/plugins/plugin_exp_command_export.py Sat Jun 03 22:24:53 2017 +0200 @@ -154,4 +154,3 @@ process_prot = ExportCommandProtocol(self, client, _jid, options) self.spawned.setdefault((_jid, client.profile),set()).add(process_prot) reactor.spawnProcess(process_prot, command, args, usePTY = process_prot.boolOption('pty')) - diff -r 0ffa8ba0857c -r 074c2f157dc9 src/plugins/plugin_xep_0054.py --- a/src/plugins/plugin_xep_0054.py Mon May 22 23:58:26 2017 +0200 +++ b/src/plugins/plugin_xep_0054.py Sat Jun 03 22:24:53 2017 +0200 @@ -341,7 +341,7 @@ def _getAvatar(self, entity, cache_only, hash_only, profile): client = self.host.getClient(profile) - d = self.getAvatar(client, jid.JID(entity)) + d = self.getAvatar(client, jid.JID(entity), cache_only, hash_only) d.addErrback(lambda dummy: '') return d