You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Firefox can't parse a tcp ICE candidate if the attribute tcptype is missing. The class TcpHostCandidate contains a value of CandidateTcpType but the toString() method does not add it.
The follow Code should be added to the method Candidate.toString()
CandidateTcpTypetcpType= getTcpType();
if (tcpType!= null)
{
buff.append(" tcptype ").append(tcpType);
}
The text was updated successfully, but these errors were encountered:
The Firefox can't parse a tcp ICE candidate if the attribute
tcptype
is missing. The class TcpHostCandidate contains a value of CandidateTcpType but the toString() method does not add it.The follow Code should be added to the method
Candidate.toString()
The text was updated successfully, but these errors were encountered: