Skip to content

Commit

Permalink
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions peerconnection.go
Original file line number Diff line number Diff line change
@@ -2318,6 +2318,7 @@ func (pc *PeerConnection) generateUnmatchedSDP(transceivers []*RTPTransceiver, u
if err != nil {
return nil, err
}
d.Attributes = append(d.Attributes, sdp.Attribute{Key: sdp.AttrKeyMsidSemantic, Value: "WMS*"})

iceParams, err := pc.iceGatherer.GetLocalParameters()
if err != nil {
@@ -2390,6 +2391,7 @@ func (pc *PeerConnection) generateMatchedSDP(transceivers []*RTPTransceiver, use
if err != nil {
return nil, err
}
d.Attributes = append(d.Attributes, sdp.Attribute{Key: sdp.AttrKeyMsidSemantic, Value: "WMS*"})

iceParams, err := pc.iceGatherer.GetLocalParameters()
if err != nil {

0 comments on commit 92df4bf

Please sign in to comment.