summaryrefslogtreecommitdiff
path: root/src/multiuserchat.py
diff options
context:
space:
mode:
authorlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-06-13 01:30:06 +0000
committerlouiz@4325f9fc-e183-4c21-96ce-0ab188b42d13 <louiz@4325f9fc-e183-4c21-96ce-0ab188b42d13>2010-06-13 01:30:06 +0000
commitd03ce7e869efdec9efed855a73539b33027a52c8 (patch)
tree469b8999851d2c99d64dd762e4a83d27e464b52c /src/multiuserchat.py
parent1ae7bc2f63a19569cbdc1ca18b6a400263c22011 (diff)
downloadpoezio-d03ce7e869efdec9efed855a73539b33027a52c8.tar.gz
poezio-d03ce7e869efdec9efed855a73539b33027a52c8.tar.bz2
poezio-d03ce7e869efdec9efed855a73539b33027a52c8.tar.xz
poezio-d03ce7e869efdec9efed855a73539b33027a52c8.zip
fix the hide_join_exit and hide_status_change options not working, also don't send the vcard if we are not using anonymous auth
Diffstat (limited to 'src/multiuserchat.py')
-rw-r--r--src/multiuserchat.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/multiuserchat.py b/src/multiuserchat.py
index a54874a7..fec1d0d3 100644
--- a/src/multiuserchat.py
+++ b/src/multiuserchat.py
@@ -140,7 +140,8 @@ class MultiUserChat(object):
else:
nick = config.get('default_nick', 'poezio')
self.handler.emit('join-room', room=roomname, nick=nick)
- self.vcard_sender.start()
+ if config.get('jid', '') == '': # Don't send the vcard if we're not anonymous
+ self.vcard_sender.start() # because the user ALREADY has one on the server
def send_message(self, room, message):
mes = Message(to=room)