about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-03-14 16:44:21 +0000
committerJames Booth <boothj5@gmail.com>2015-03-14 16:44:21 +0000
commitede3368f7ad0f66928cdf506f3c51ffe64653a89 (patch)
tree20811f184d8905e1ef65feb70591128e52113009 /src
parent2fc7937dcd6949bb322bbfdd33c903792324719b (diff)
downloadprofani-tty-ede3368f7ad0f66928cdf506f3c51ffe64653a89.tar.gz
Check for sent and received carbons
Diffstat (limited to 'src')
-rw-r--r--src/xmpp/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/message.c b/src/xmpp/message.c
index c0c37f4d..a3da01ee 100644
--- a/src/xmpp/message.c
+++ b/src/xmpp/message.c
@@ -455,7 +455,7 @@ _chat_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
     xmpp_stanza_t *carbons = xmpp_stanza_get_child_by_ns(stanza, STANZA_NS_CARBONS);
     if(carbons) {
         char *name = xmpp_stanza_get_name(carbons);
-        if (g_strcmp0(name, "received") == 0) {
+        if ((g_strcmp0(name, "received") == 0) || (g_strcmp0(name, "sent")) == 0){
             xmpp_stanza_t *forwarded = xmpp_stanza_get_child_by_ns(carbons, STANZA_NS_FORWARD);
             xmpp_stanza_t *message = xmpp_stanza_get_child_by_name(forwarded, STANZA_NAME_MESSAGE);