From 2cd079c96f66cf535ea6af8daf70d0212055258c Mon Sep 17 00:00:00 2001 From: Ghislain MARY Date: Tue, 16 Jan 2018 17:42:04 +0100 Subject: [PATCH] Fix DTLS in calls. --- src/nat/ice-agent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nat/ice-agent.cpp b/src/nat/ice-agent.cpp index ca715a119..bca4f7cdb 100644 --- a/src/nat/ice-agent.cpp +++ b/src/nat/ice-agent.cpp @@ -99,7 +99,7 @@ int IceAgent::getNbLosingPairs () const { bool IceAgent::hasCompleted () const { if (!iceSession) - return false; + return true; return ice_session_state(iceSession) == IS_Completed; }