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

no need to escape title in notifications

parent f86b4383
No related branches found
No related tags found
No related merge requests found
......@@ -338,8 +338,7 @@ def popup(event_type, jid, account, msg_type='', path_to_image=None,
if gajim.config.get('use_notif_daemon') and dbus_support.supported:
try:
DesktopNotification(event_type, jid, account, msg_type,
path_to_image, gobject.markup_escape_text(title),
gobject.markup_escape_text(text))
path_to_image, title, gobject.markup_escape_text(text))
return # sucessfully did D-Bus Notification procedure!
except dbus.DBusException, e:
# Connection to D-Bus failed
......@@ -361,7 +360,7 @@ def popup(event_type, jid, account, msg_type='', path_to_image=None,
if not title:
_title = ''
else:
_title = gobject.markup_escape_text(title)
_title = title
notification = pynotify.Notification(_title, _text)
timeout = gajim.config.get('notification_timeout') * 1000 # make it ms
......
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