aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2015-03-04 09:47:11 -0600
committerTed Gould <ted@gould.cx>2015-03-04 09:47:11 -0600
commit17fc688a0557e74714d15b69e79b3fce7af7a66b (patch)
tree4ce138538506a6dc8760d5f9447658a17b70f94b /src
parent09f8736a9282005658341f4789d99ccfcb59eca1 (diff)
downloadayatana-indicator-messages-17fc688a0557e74714d15b69e79b3fce7af7a66b.tar.gz
ayatana-indicator-messages-17fc688a0557e74714d15b69e79b3fce7af7a66b.tar.bz2
ayatana-indicator-messages-17fc688a0557e74714d15b69e79b3fce7af7a66b.zip
Action name should be escaped message id and escaped action name, not escaped action name twice.
Diffstat (limited to 'src')
-rw-r--r--src/im-application-list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/im-application-list.c b/src/im-application-list.c
index 2d0d7fd..2ccc022 100644
--- a/src/im-application-list.c
+++ b/src/im-application-list.c
@@ -1114,7 +1114,7 @@ im_application_list_message_added (Application *app,
g_variant_builder_init (&dict_builder, G_VARIANT_TYPE ("a{sv}"));
- prefixed_name = g_strjoin (".", app->id, "msg-actions", escaped_name, escaped_name, NULL);
+ prefixed_name = g_strjoin (".", app->id, "msg-actions", action_name, escaped_name, NULL);
g_variant_builder_add (&dict_builder, "{sv}", "name", g_variant_new_string (prefixed_name));
if (label)