webrtc: support charset in Content-Type of WHIP offer responses (#3274)

This commit is contained in:
FuseTim 2024-04-20 23:24:19 +02:00 committed by GitHub
parent dc3eae7f96
commit 4ed1a39da2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,6 +7,7 @@ import (
"io"
"net/http"
"net/url"
"strings"
"time"
"github.com/bluenviron/gortsplib/v4/pkg/format"
@ -285,7 +286,7 @@ func (c *WHIPClient) postOffer(
}
contentType := res.Header.Get("Content-Type")
if contentType != "application/sdp" {
if strings.TrimSpace(strings.Split(contentType, ";")[0]) != "application/sdp" {
return nil, fmt.Errorf("bad Content-Type: expected 'application/sdp', got '%s'", contentType)
}