fix unicode error in groupchat. Fixes #3480

This commit is contained in:
Yann Leboulanger 2007-10-21 09:28:34 +00:00
parent 99f6874115
commit bbb7f5b0d4
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class GroupchatControl(ChatControlBase):
self.handlers[id] = widget
self.room_jid = self.contact.jid
self.nick = contact.name
self.nick = contact.name.decode('utf-8')
self.new_nick = ''
self.name = self.room_jid.split('@')[0]