typo: update correctly gajim.last_message_time when we receive a message. Fixes #1281

This commit is contained in:
Yann Leboulanger 2006-04-02 17:38:06 +00:00
parent 31e54bc2ed
commit c201b03dce
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ class ChatControlBase(MessageControl):
if not count_as_new: if not count_as_new:
return return
if kind == 'incoming_queue': if kind != 'incoming_queue':
gajim.last_message_time[self.account][self.get_full_jid()] = \ gajim.last_message_time[self.account][self.get_full_jid()] = \
time.time() time.time()
urgent = True urgent = True