Don't duplicate RTP/SAVP profile when both SDES and ZRTP are enabled

Closes #140
smack4
Ingo Bauersachs 11 years ago
parent 18bdce0088
commit 90876aaa33

@ -1325,7 +1325,7 @@ private List<String> getRtpTransports()
String proto = protos[pi];
int ri = result.indexOf(proto);
if (ri > 0)
if (ri >= 0)
result.remove(ri);
result.add(0, proto);
}

Loading…
Cancel
Save