summaryrefslogtreecommitdiff
path: root/src/user.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/user.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/user.py')
-rw-r--r--src/user.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/user.py b/src/user.py
index 6f0f3328..6dc87c73 100644
--- a/src/user.py
+++ b/src/user.py
@@ -52,10 +52,14 @@ class User(object):
Return True if the user talked since the last s seconds
"""
from common import debug
+ debug('anus===========\n')
if self.last_talked is None:
+ debug('return False1\n')
return False
delta = timedelta(0, t)
debug("Last talk: %s\nDelai:%s\nDelta:%s\n" % (str(self.last_talked), str(t), str(delta)))
if datetime.now() - delta > self.last_talked:
+ debug('return False2\n')
return False
+ debug('return True')
return True