Skip to content
Snippets Groups Projects
Commit a8666e15 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

correctly decode utf-8 names in history window. fixes #3552

parent 31a1f3ef
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,7 @@ class HistoryWindow:
self.window.destroy()
def on_jid_entry_activate(self, widget):
self.jid = self.jid_entry.get_text()
self.jid = self.jid_entry.get_text().decode('utf-8')
if self.completion_dict.has_key(self.jid): # a full qualified jid or a contact name was entered
contact = self.completion_dict[self.jid]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment