From 1969b2ccf70bfd5be6440c8c8c11150cb9d75bcf Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 20 Jan 2016 15:11:53 +0100 Subject: [PATCH] Always ask user to validate zrtp sas --- src/org/linphone/CallActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/linphone/CallActivity.java b/src/org/linphone/CallActivity.java index 6be02df24..da5d914eb 100644 --- a/src/org/linphone/CallActivity.java +++ b/src/org/linphone/CallActivity.java @@ -229,7 +229,7 @@ public class CallActivity extends Activity implements OnClickListener { @Override public void callEncryptionChanged(LinphoneCore lc, final LinphoneCall call, boolean encrypted, String authenticationToken) { if (status != null) { - if(call.getCurrentParamsCopy().getMediaEncryption().equals(LinphoneCore.MediaEncryption.ZRTP) && !call.isAuthenticationTokenVerified()){ + if(call.getCurrentParamsCopy().getMediaEncryption().equals(LinphoneCore.MediaEncryption.ZRTP)/* && !call.isAuthenticationTokenVerified()*/){ status.showZRTPDialog(call); } status.refreshStatusItems(call, call.getCurrentParamsCopy().getVideoEnabled());