aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-chat-window.c
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-04-29 23:53:17 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-02 16:56:11 +0800
commit7078e93bbcd562175248a8fdf752f2fa92f1171c (patch)
tree1d0ff67eac0b5412925e4fc258785fd076bcb7bc /src/empathy-chat-window.c
parent85058e4e3f88412683771172f7dace66366ad069 (diff)
downloadgsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.tar
gsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.tar.gz
gsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.tar.bz2
gsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.tar.lz
gsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.tar.xz
gsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.tar.zst
gsoc2013-empathy-7078e93bbcd562175248a8fdf752f2fa92f1171c.zip
set a not empty string when setting EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_APPEND
libnotify now filters out empty string so the hint was not set (#648842).
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r--src/empathy-chat-window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 94f93e2bf..ee4f445e5 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1335,8 +1335,9 @@ chat_window_show_or_update_notification (EmpathyChatWindow *window,
G_CALLBACK (chat_window_notification_closed_cb), window, 0);
if (has_x_canonical_append) {
+ /* We have to set a not empty string to keep libnotify happy */
notify_notification_set_hint_string (notification,
- EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_APPEND, "");
+ EMPATHY_NOTIFY_MANAGER_CAP_X_CANONICAL_APPEND, "1");
}
}