summaryrefslogtreecommitdiff
path: root/xchat
diff options
context:
space:
mode:
authorStefano Candori <stefano.candori@gmail.com>2011-01-11 01:19:41 +0100
committerStefano Candori <stefano.candori@gmail.com>2011-01-11 01:19:41 +0100
commit4617a1d3844e568a0b72c881d112d17b8172530b (patch)
tree2acd9d481df7ddd060daeebbf9045a7ce5e2930a /xchat
parentba13a227ac685c073b2eb2c8c1a2352f26f96cc0 (diff)
Quick fix on subject text in xchat_dataprovider
Diffstat (limited to 'xchat')
-rw-r--r--xchat/zeitgeist-dataprovider.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xchat/zeitgeist-dataprovider.c b/xchat/zeitgeist-dataprovider.c
index 4b4a6ea..fd13e02 100644
--- a/xchat/zeitgeist-dataprovider.c
+++ b/xchat/zeitgeist-dataprovider.c
@@ -104,7 +104,7 @@ static int message_cb(char *word[], void *userdata)
char *url, *text;
url = g_strconcat("irc://", server, "/", channel, NULL);
- text = g_strconcat("You sent a message in channel ", channel,": ", word[2], NULL);
+ text = g_strconcat(channel, ": you sent a message: ", word[2], NULL);
send_event_to_zeitgeist(url, text, ZEITGEIST_ZG_SEND_EVENT);
@@ -118,7 +118,7 @@ static int priv_message_cb(char *word[], void *userdata)
char *url, *text;
url = g_strconcat("irc://", server, "/", channel, NULL);
- text = g_strconcat("You received a message from ", word[1], " in channel ", channel,": ", word[2], NULL);
+ text = g_strconcat(channel, ": you received a message from ", word[1],": ", word[2], NULL);
send_event_to_zeitgeist(url, text, ZEITGEIST_ZG_RECEIVE_EVENT);