mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
Merge pull request #1542 from DebXWoody/bugfix/fix1541
OMEMO: Don't encrypt to yourself (MUC)
This commit is contained in:
commit
e1fbe3be90
@ -791,6 +791,19 @@ omemo_on_message_send(ProfWin* win, const char* const message, gboolean request_
|
|||||||
.device_id = GPOINTER_TO_INT(device_ids_iter->data)
|
.device_id = GPOINTER_TO_INT(device_ids_iter->data)
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Don't encrypt for this device (according to
|
||||||
|
// <https://xmpp.org/extensions/xep-0384.html#encrypt>).
|
||||||
|
// Yourself as recipients in case of MUC
|
||||||
|
char* mybarejid = connection_get_barejid();
|
||||||
|
if ( !g_strcmp0(mybarejid, recipients_iter->data) ) {
|
||||||
|
if (GPOINTER_TO_INT(device_ids_iter->data) == omemo_ctx.device_id) {
|
||||||
|
free(mybarejid);
|
||||||
|
log_debug("[OMEMO][SEND] Skipping %d (my device) ", GPOINTER_TO_INT(device_ids_iter->data));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
free(mybarejid);
|
||||||
|
|
||||||
log_debug("[OMEMO][SEND] recipients with device id %d for %s", GPOINTER_TO_INT(device_ids_iter->data), recipients_iter->data);
|
log_debug("[OMEMO][SEND] recipients with device id %d for %s", GPOINTER_TO_INT(device_ids_iter->data), recipients_iter->data);
|
||||||
res = session_cipher_create(&cipher, omemo_ctx.store, &address, omemo_ctx.signal);
|
res = session_cipher_create(&cipher, omemo_ctx.store, &address, omemo_ctx.signal);
|
||||||
if (res != SG_SUCCESS ) {
|
if (res != SG_SUCCESS ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user