From 33104a778d6bcfb37577d14d28f68442467636a9 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Tue, 4 Jan 2022 12:34:16 +0100 Subject: Add 'unknown' encryption state for establishing calls Currently, they are Encryption.NONE and thus marked as unencrypted in encrypted conversations --- libdino/src/entity/encryption.vala | 1 + libdino/src/service/calls.vala | 3 +++ 2 files changed, 4 insertions(+) (limited to 'libdino') diff --git a/libdino/src/entity/encryption.vala b/libdino/src/entity/encryption.vala index 25d55eb1..193d741b 100644 --- a/libdino/src/entity/encryption.vala +++ b/libdino/src/entity/encryption.vala @@ -6,6 +6,7 @@ public enum Encryption { OMEMO, DTLS_SRTP, SRTP, + UNKNOWN, } } \ No newline at end of file diff --git a/libdino/src/service/calls.vala b/libdino/src/service/calls.vala index 76cd0c68..b30c2755 100644 --- a/libdino/src/service/calls.vala +++ b/libdino/src/service/calls.vala @@ -42,6 +42,7 @@ namespace Dino { call.counterpart = conversation.counterpart; call.ourpart = stream_interactor.get_module(MucManager.IDENTITY).get_own_jid(conversation.counterpart, conversation.account) ?? conversation.account.full_jid; call.time = call.local_time = call.end_time = new DateTime.now_utc(); + call.encryption = Encryption.UNKNOWN; call.state = Call.State.RINGING; stream_interactor.get_module(CallStore.IDENTITY).add_call(call, conversation); @@ -227,6 +228,7 @@ namespace Dino { call.add_peer(call.counterpart); call.account = account; call.time = call.local_time = call.end_time = new DateTime.now_utc(); + call.encryption = Encryption.UNKNOWN; Conversation conversation = stream_interactor.get_module(ConversationManager.IDENTITY).create_conversation(call.counterpart.bare_jid, account, Conversation.Type.CHAT); @@ -284,6 +286,7 @@ namespace Dino { call.counterpart = inviter_jid; call.account = account; call.time = call.local_time = call.end_time = new DateTime.now_utc(); + call.encryption = Encryption.UNKNOWN; call.state = Call.State.RINGING; Conversation? conversation = stream_interactor.get_module(ConversationManager.IDENTITY).get_conversation(inviter_jid.bare_jid, account); -- cgit v1.2.3-54-g00ecf