From fe908b118ec677286bd9164318bab87b2eb0a3c1 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Sun, 7 Dec 2008 22:36:20 +0000 Subject: [PATCH] don't escape gmail email notifications twice --- src/gajim.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gajim.py b/src/gajim.py index 9239e05c49..cd4a9a3546 100755 --- a/src/gajim.py +++ b/src/gajim.py @@ -1595,7 +1595,7 @@ class Interface: path = gtkgui_helpers.get_path_to_generic_or_avatar(img) notify.popup(_('New E-mail'), jid, account, 'gmail', path_to_image=path, title=title, - text=gobject.markup_escape_text(text)) + text=text) if self.remote_ctrl: self.remote_ctrl.raise_signal('NewGmail', (account, array)) -- GitLab