Attempts to handle error when unsupported SRTP control type exists in account properties.

fix-message-formatting 5252
paweldomas 12 years ago
parent 0dff89bf2d
commit 3492885832

@ -1005,8 +1005,17 @@ public List<SrtpControlType> getSortedEnabledEncryptionProtocolList()
ProtocolProviderFactory.ENCRYPTION_PROTOCOL
.length() + 1);
sortedEncryptionProtocols.add(index,
SrtpControlType.fromString(name));
try
{
sortedEncryptionProtocols.add(index,
SrtpControlType.fromString(name));
}
catch(IllegalArgumentException exc)
{
logger.error(
"Failed to get SRTP control type for name: '"
+ name + "', key: '" + e.getKey() + "'", exc);
}
}
}

Loading…
Cancel
Save