If an XMPP logged peer supports Google's Jingle/ICE dialect, choose it by default for a call.

cusax-fix
Sebastien Vincent 15 years ago
parent d09c663838
commit 879c5cf27e

@ -306,12 +306,7 @@ public Call createCall(Contact callee)
}
*/
if(di != null)
{
if (logger.isInfoEnabled())
logger.info(fullCalleeURI + ": jingle supported ");
}
else if(isGingle)
if(isGingle)
{
if(logger.isInfoEnabled())
{
@ -319,6 +314,11 @@ else if(isGingle)
}
fullCalleeURI = gingleURI;
}
else if(di != null)
{
if (logger.isInfoEnabled())
logger.info(fullCalleeURI + ": jingle supported ");
}
else
{
if (logger.isInfoEnabled())

Loading…
Cancel
Save