mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-21 22:44:23 +00:00
Add 'unknown' encryption state for establishing calls
Currently, they are Encryption.NONE and thus marked as unencrypted in encrypted conversations
This commit is contained in:
parent
85f4bddf99
commit
33104a778d
3 changed files with 5 additions and 1 deletions
|
@ -6,6 +6,7 @@ public enum Encryption {
|
|||
OMEMO,
|
||||
DTLS_SRTP,
|
||||
SRTP,
|
||||
UNKNOWN,
|
||||
}
|
||||
|
||||
}
|
|
@ -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);
|
||||
|
|
|
@ -161,7 +161,7 @@ public class ItemMetaDataHeader : Box {
|
|||
Application app = GLib.Application.get_default() as Application;
|
||||
|
||||
ContentMetaItem ci = item as ContentMetaItem;
|
||||
if (item.encryption != Encryption.NONE && ci != null) {
|
||||
if (item.encryption != Encryption.NONE && item.encryption != Encryption.UNKNOWN && ci != null) {
|
||||
Widget? widget = null;
|
||||
foreach(var e in app.plugin_registry.encryption_list_entries) {
|
||||
if (e.encryption == item.encryption) {
|
||||
|
|
Loading…
Reference in a new issue