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

Don't rely on account name being jid

This commit is contained in:
Paul Fariello 2019-03-14 06:00:25 +01:40
parent 8952684472
commit 4826da3aa6

View File

@ -434,7 +434,7 @@ omemo_start_device_session(const char *const jid, uint32_t device_id,
gboolean trusted = is_trusted_identity(&address, (uint8_t *)identity_key_raw, identity_key_len, &omemo_ctx.identity_key_store);
Jid *ownjid = jid_create(session_get_account_name());
Jid *ownjid = jid_create(connection_get_fulljid());
if (g_strcmp0(jid, ownjid->barejid) == 0) {
char *fingerprint = omemo_fingerprint(identity_key, TRUE);
@ -515,7 +515,7 @@ gboolean
omemo_on_message_send(ProfChatWin *chatwin, const char *const message, gboolean request_receipt)
{
int res;
Jid *jid = jid_create(session_get_account_name());
Jid *jid = jid_create(connection_get_fulljid());
GList *recipient_device_id = g_hash_table_lookup(omemo_ctx.device_list, chatwin->barejid);
if (!recipient_device_id) {