diff --git a/src/xmpp/message.c b/src/xmpp/message.c index 4f341f6a..73b29b91 100644 --- a/src/xmpp/message.c +++ b/src/xmpp/message.c @@ -434,6 +434,11 @@ _chat_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, gchar *to = xmpp_stanza_get_attribute(message, STANZA_ATTR_TO); gchar *from = xmpp_stanza_get_attribute(message, STANZA_ATTR_FROM); + // happens when receive a carbon of a self sent message + if(to == NULL) { + to = from; + } + Jid *jid_from = jid_create(from); Jid *jid_to = jid_create(to); Jid *my_jid = jid_create(jabber_get_fulljid()); @@ -541,4 +546,4 @@ _chat_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, jid_destroy(jid); return 1; } -} \ No newline at end of file +}