Skip to content

Commit 716beb5

Browse files
committed
Use space after WMS. Fixes #3128
1 parent 7c5d163 commit 716beb5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

peerconnection.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2718,7 +2718,7 @@ func (pc *PeerConnection) generateUnmatchedSDP(
27182718
if err != nil {
27192719
return nil, err
27202720
}
2721-
desc.Attributes = append(desc.Attributes, sdp.Attribute{Key: sdp.AttrKeyMsidSemantic, Value: "WMS*"})
2721+
desc.Attributes = append(desc.Attributes, sdp.Attribute{Key: sdp.AttrKeyMsidSemantic, Value: "WMS *"})
27222722

27232723
iceParams, err := pc.iceGatherer.GetLocalParameters()
27242724
if err != nil {
@@ -2811,7 +2811,7 @@ func (pc *PeerConnection) generateMatchedSDP(
28112811
if err != nil {
28122812
return nil, err
28132813
}
2814-
desc.Attributes = append(desc.Attributes, sdp.Attribute{Key: sdp.AttrKeyMsidSemantic, Value: "WMS*"})
2814+
desc.Attributes = append(desc.Attributes, sdp.Attribute{Key: sdp.AttrKeyMsidSemantic, Value: "WMS *"})
28152815

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

0 commit comments

Comments
 (0)