mirror of
https://github.com/profanity-im/profanity.git
synced 2025-01-03 14:57:42 -05:00
Log incoming carbons if they are no MUCPM
Regards https://github.com/profanity-im/profanity/pull/1446
This commit is contained in:
parent
3e26364579
commit
22b923018f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user