Skip to content

Commit

Permalink
Fix: Offer tcp aligned to condition (#1294) (#1295)
Browse files Browse the repository at this point in the history
  • Loading branch information
tozzi21 authored Jan 25, 2025
1 parent 23441de commit 06a4d34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net/ICE/RTCIceCandidate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public override string ToString()
string candidateStr;
if (protocol == RTCIceProtocol.tcp)
{
candidateStr = String.Format("{0} {1} udp {2} {3} {4} typ {5} tcptype {6} raddr {7} rport {8} generation 0",
candidateStr = String.Format("{0} {1} tcp {2} {3} {4} typ {5} tcptype {6} raddr {7} rport {8} generation 0",
foundation,
component.GetHashCode(),
priority,
Expand Down

0 comments on commit 06a4d34

Please sign in to comment.