summaryrefslogtreecommitdiff
path: root/src/room.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/room.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/room.py')
-rw-r--r--src/room.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/room.py b/src/room.py
index f210aa4c..bcd302a8 100644
--- a/src/room.py
+++ b/src/room.py
@@ -65,6 +65,8 @@ class Room(object):
in the room anymore
"""
user = self.get_user_by_name(nickname) if nickname is not None else None
+ if user:
+ user.set_last_talked(datetime.now())
time = time if time is not None else datetime.now()
color = None
if nickname is not None: