webrtc: fix using inline credentials in URLs (#1919) (#1966)

This commit is contained in:
Alessandro Ros
2023-06-21 15:44:04 +02:00
committed by GitHub
parent 4f098cbdf3
commit 815fa0586a
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -190,7 +190,7 @@ class Transmitter {
start() {
console.log("requesting ICE servers");
fetch('whip', {
fetch(new URL('whip', window.location.href), {
method: 'OPTIONS',
})
.then((res) => this.onIceServers(res))
@@ -227,7 +227,7 @@ class Transmitter {
'&audio_codec=' + audioCodec +
'&video_bitrate=' + videoBitrate;
fetch('whip' + params, {
fetch(new URL('whip', window.location.href) + params, {
method: 'POST',
headers: {
'Content-Type': 'application/sdp',
@@ -293,7 +293,7 @@ class Transmitter {
}
sendLocalCandidates(candidates) {
fetch('whip', {
fetch(new URL('whip', window.location.href), {
method: 'PATCH',
headers: {
'Content-Type': 'application/trickle-ice-sdpfrag',
+3 -3
View File
@@ -104,7 +104,7 @@ class WHEPClient {
start() {
console.log("requesting ICE servers");
fetch('whep', {
fetch(new URL('whep', window.location.href), {
method: 'OPTIONS',
})
.then((res) => this.onIceServers(res))
@@ -138,7 +138,7 @@ class WHEPClient {
console.log("sending offer");
fetch('whep', {
fetch(new URL('whep', window.location.href), {
method: 'POST',
headers: {
'Content-Type': 'application/sdp',
@@ -204,7 +204,7 @@ class WHEPClient {
}
sendLocalCandidates(candidates) {
fetch('whep', {
fetch(new URL('whep', window.location.href), {
method: 'PATCH',
headers: {
'Content-Type': 'application/trickle-ice-sdpfrag',