diff options
author | Michael Vetter <jubalh@iodoru.org> | 2020-05-27 22:06:04 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2020-05-27 22:06:04 +0200 |
commit | d4692b1b2dfc6eca947d3d5cbe19901306837ccd (patch) | |
tree | e9196d092decb7b4a4af9703655585175dcf8cc8 /src/xmpp | |
parent | d240eb629cbe8cfc7e7f51ab95d44f993088810c (diff) | |
download | profani-tty-d4692b1b2dfc6eca947d3d5cbe19901306837ccd.tar.gz |
Fix carbon logging
Regards https://github.com/profanity-im/profanity/issues/1342
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/message.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/xmpp/message.c b/src/xmpp/message.c index c293a8f3..b668ce84 100644 --- a/src/xmpp/message.c +++ b/src/xmpp/message.c @@ -1118,6 +1118,7 @@ _handle_carbons(xmpp_stanza_t *const stanza) const gchar *from = xmpp_stanza_get_from(message_stanza); // happens when receive a carbon of a self sent message + // really? maybe some servers do this, but it's not required. if (!to) to = from; Jid *jid_from = jid_create(from); @@ -1140,18 +1141,19 @@ _handle_carbons(xmpp_stanza_t *const stanza) message->encrypted = xmpp_stanza_get_text(x); } - //TODO: now that profmessage has from_jid AND to_jid we should save both. and maybe also add is_carbon so we can decide later on. + //TODO: maybe also add is_carbon maybe even an enum with outgoing/incoming + //could be that then we can have sv_ev_carbon no incoming/outgoing if (message->plain || message->encrypted || message->body) { // if we are the recipient, treat as standard incoming message if (g_strcmp0(mybarejid, jid_to->barejid) == 0) { - jid_destroy(jid_to); message->from_jid = jid_from; + message->to_jid = jid_to; sv_ev_incoming_carbon(message); // else treat as a sent message } else { - jid_destroy(jid_from); - message->from_jid = jid_to; + message->from_jid = jid_from; + message->to_jid = jid_to; sv_ev_outgoing_carbon(message); } } |