1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Log incoming carbons if they are no MUCPM

Regards https://github.com/profanity-im/profanity/pull/1446
This commit is contained in:
Michael Vetter 2020-12-09 10:49:19 +01:00
parent 3e26364579
commit 22b923018f

View File

@ -659,14 +659,19 @@ sv_ev_incoming_carbon(ProfMessage* message)
#endif
}
gboolean logit = TRUE;
if (message->type == PROF_MSG_TYPE_MUCPM) {
logit = FALSE;
}
if (message->enc == PROF_MSG_ENC_OX) {
_sv_ev_incoming_ox(chatwin, new_win, message, FALSE);
_sv_ev_incoming_ox(chatwin, new_win, message, logit);
} else if (message->encrypted) {
_sv_ev_incoming_pgp(chatwin, new_win, message, FALSE);
_sv_ev_incoming_pgp(chatwin, new_win, message, logit);
} else if (message->enc == PROF_MSG_ENC_OMEMO) {
_sv_ev_incoming_omemo(chatwin, new_win, message, FALSE);
_sv_ev_incoming_omemo(chatwin, new_win, message, logit);
} else {
_sv_ev_incoming_plain(chatwin, new_win, message, FALSE);
_sv_ev_incoming_plain(chatwin, new_win, message, logit);
}
rosterwin_roster();
return;