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

correctly quote urls. Fixes #5842

parent 0d356666
No related branches found
No related tags found
No related merge requests found
......@@ -748,7 +748,7 @@ class ConversationTextview(gobject.GObject):
menu.prepend(item)
submenu = gtk.Menu()
item.set_submenu(submenu)
phrase_for_url = urllib.quote(self.selected_phrase)
phrase_for_url = urllib.quote(self.selected_phrase.encode('utf-8'))
always_use_en = gajim.config.get('always_english_wikipedia')
if always_use_en:
......
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