Pango escape title of notification too. Fixes #1915.

This commit is contained in:
Jean-Marie Traissard 2006-05-04 03:47:34 +00:00
parent f9e874a1a3
commit e96c70d332
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ def notify(event_type, jid, account, msg_type = '', path_to_image = None,
the Desktop Notification Specification. If that fails, then we fall back to the Desktop Notification Specification. If that fails, then we fall back to
the older style PopupNotificationWindow method.''' the older style PopupNotificationWindow method.'''
text = gtkgui_helpers.escape_for_pango_markup(text) text = gtkgui_helpers.escape_for_pango_markup(text)
title = gtkgui_helpers.escape_for_pango_markup(title)
if gajim.config.get('use_notif_daemon') and dbus_support.supported: if gajim.config.get('use_notif_daemon') and dbus_support.supported:
try: try:
DesktopNotification(event_type, jid, account, msg_type, path_to_image, DesktopNotification(event_type, jid, account, msg_type, path_to_image,