Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPhilipp Hörist <forenjunkie@chello.at>2017-09-16 12:49:31 +0300
committerPhilipp Hörist <forenjunkie@chello.at>2017-10-08 12:26:28 +0300
commita01cdbf271be37c52adf26a109f5e0b561a5178e (patch)
treecf916a5148e09153c57aa13d83b5cd77258043ee /test
parent68f13788ed0746083e501369936ab7cd2f804490 (diff)
Refactor Avatars
- Add support for Pubsub Avatars - Dont poll for vCard Updates, only use XEP-0153 - Dont cache vCards - Store the avatar SHA of roster contacts in the DB - Store the current SHA of each contact in the Contacts Object - Move some code into the ConnectionVcard Class
Diffstat (limited to 'test')
-rw-r--r--test/lib/gajim_mocks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/gajim_mocks.py b/test/lib/gajim_mocks.py
index 812aac724..1d7cc6d76 100644
--- a/test/lib/gajim_mocks.py
+++ b/test/lib/gajim_mocks.py
@@ -47,7 +47,7 @@ class MockConnection(Mock, ConnectionHandlers):
app.connections[account] = self
- def request_vcard(self, jid):
+ def request_vcard(self, *args):
pass
class MockWindow(Mock):