Skip to content

Commit

Permalink
Fix client personal pairing SDP private IP inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
rod-hynes committed Aug 26, 2024
1 parent e91aa5a commit 38b6c0d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion psiphon/common/inproxy/webrtc.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ func newWebRTCConnWithOffer(
hasPersonalCompartmentIDs bool) (
*webRTCConn, WebRTCSessionDescription, *webRTCSDPMetrics, error) {

conn, SDP, metrics, err := newWebRTCConn(ctx, config, nil, false)
conn, SDP, metrics, err := newWebRTCConn(
ctx, config, nil, hasPersonalCompartmentIDs)
if err != nil {
return nil, WebRTCSessionDescription{}, nil, errors.Trace(err)
}
Expand Down

0 comments on commit 38b6c0d

Please sign in to comment.