bugfix when the message contain a ':'

This commit is contained in:
Yann Leboulanger 2005-05-31 13:07:35 +00:00
parent b2d36d6321
commit 0805f5a65b
1 changed files with 2 additions and 6 deletions

View File

@ -338,12 +338,8 @@ class Tabbed_chat_window(chat.Chat):
name = self.plugin.nicks[self.account]
elif msg[1] == 'recv':
kind = 'incoming'
# self.users is not initialized here yet
name = self.plugin.roster.contacts[self.account][jid][0].name
name = self.users[jid].name
tim = time.gmtime(float(msg[0]))
if msg[2][-1] == '\n':
text = msg[2][:-1]
else:
text = msg[2]
text = ':'.join(msg[2:])[0:-1] #remove the latest \n
self.print_conversation_line(text, jid, kind, name, tim)