Skip to content
Snippets Groups Projects
Commit 4d7f9a0e authored by Ingo Bauersachs's avatar Ingo Bauersachs
Browse files

Keep existing crypto session after putting a call on hold

parent 189e34da
No related branches found
No related tags found
No related merge requests found
......@@ -128,6 +128,13 @@ private void initAttributes()
{
if(attributes == null)
{
if (selectedOutAttribute != null)
{
attributes = new SrtpCryptoAttribute[1];
attributes[0] = selectedOutAttribute;
return;
}
attributes = new SrtpCryptoAttribute[enabledCryptoSuites.size()];
for (int i = 0; i < attributes.length; i++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment