fix unicode error in groupchat. Fixes #3480
This commit is contained in:
		
							parent
							
								
									99f6874115
								
							
						
					
					
						commit
						bbb7f5b0d4
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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]
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue