From 33d559811b95a7e31bd16376c485434788085381 Mon Sep 17 00:00:00 2001 From: Julien Wadel Date: Thu, 4 Jun 2020 09:31:33 +0200 Subject: [PATCH] Remove DTLS as it is not supported --- .../ui/views/App/Main/Assistant/UseOtherSipAccount.qml | 3 +-- .../ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/linphone-app/ui/views/App/Main/Assistant/UseOtherSipAccount.qml b/linphone-app/ui/views/App/Main/Assistant/UseOtherSipAccount.qml index 7f9acee9d..71f4cb5f9 100644 --- a/linphone-app/ui/views/App/Main/Assistant/UseOtherSipAccount.qml +++ b/linphone-app/ui/views/App/Main/Assistant/UseOtherSipAccount.qml @@ -70,8 +70,7 @@ AssistantAbstractView { ComboBox { id: transport - model: [ 'UDP', 'TCP', 'TLS', 'DTLS' ] - currentIndex:2 + model: [ 'UDP', 'TCP', 'TLS'] } } } diff --git a/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml b/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml index 4c18a9e6d..c744962bc 100644 --- a/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml +++ b/linphone-app/ui/views/App/Settings/Dialogs/SettingsSipAccountsEdit.qml @@ -102,7 +102,7 @@ DialogPlus { id: transport enabled: dialog._serverAddressOk - model: [ 'UDP', 'TCP', 'TLS', 'DTLS' ] + model: [ 'UDP', 'TCP', 'TLS' ] onActivated: Logic.handleTransportChanged(model[index]) }