From de20191e72312b60469140181ed0fe3c39ce02dc Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Sun, 17 Feb 2008 20:44:38 +0000
Subject: [PATCH] no need to escape strings that go to notification daemon

---
 src/notify.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/notify.py b/src/notify.py
index 6106227c39..715ea063cb 100644
--- a/src/notify.py
+++ b/src/notify.py
@@ -315,9 +315,6 @@ def popup(event_type, jid, account, msg_type = '', path_to_image = None,
 	'''Notifies a user of an event. It first tries to a valid implementation of
 	the Desktop Notification Specification. If that fails, then we fall back to
 	the older style PopupNotificationWindow method.'''
-	text = gobject.markup_escape_text(text)
-	title = gobject.markup_escape_text(title)
-
 	if gajim.config.get('use_notif_daemon') and dbus_support.supported:
 		try:
 			DesktopNotification(event_type, jid, account, msg_type,
-- 
GitLab