Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
seabassjh committed Apr 16, 2024
1 parent a97d49e commit c797e71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webrtc/src/peer_connection/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1964,7 +1964,7 @@ impl RTCPeerConnection {

// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #8, #9, #10)
if let Err(err) = self.internal.ice_transport.stop().await {
close_errs.push(Error::new(format!("dtls_transport: {err}")));
close_errs.push(Error::new(format!("ice_transport: {err}")));
}

// https://www.w3.org/TR/webrtc/#dom-rtcpeerconnection-close (step #11)
Expand Down

0 comments on commit c797e71

Please sign in to comment.