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

[Dicson] Don't try to translate empty string. Fixes #5032

parent b2e0e4cc
No related branches found
No related tags found
No related merge requests found
...@@ -562,7 +562,7 @@ class DesktopNotification: ...@@ -562,7 +562,7 @@ class DesktopNotification:
dbus.UInt32(0), # replaces_id (uint) dbus.UInt32(0), # replaces_id (uint)
ntype, # event_id (string) ntype, # event_id (string)
dbus.String(gajim_icon), # app_icon (string) dbus.String(gajim_icon), # app_icon (string)
dbus.String(_('')), # summary (string) dbus.String(''), # summary (string)
dbus.String(notification_text), # body (string) dbus.String(notification_text), # body (string)
# actions (stringlist) # actions (stringlist)
(dbus.String('default'), dbus.String(self.event_type), (dbus.String('default'), dbus.String(self.event_type),
......
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