Skip to content

Commit

Permalink
Code Review
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacakakpo1 committed Oct 25, 2023
1 parent e809675 commit eb64fad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TelnyxRTC/Telnyx/WebRTC/Call.swift
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public class Call {
It sets the incoming sdp as the remoteDecription.
sdp: Is the remote SDP to configure in the current RTCPeerConnection
*/
private func answered(sdp: String,custumHeaders:[String:String] = [:]) {
private func answered(sdp: String, custumHeaders:[String:String] = [:]) {
let remoteDescription = RTCSessionDescription(type: .answer, sdp: sdp)
self.peer?.connection?.setRemoteDescription(remoteDescription, completionHandler: { (error) in
if let error = error {
Expand Down

0 comments on commit eb64fad

Please sign in to comment.