Browse Source

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

pull/1973/head
Alessandro Ros 2 years ago committed by GitHub
parent
commit
815fa0586a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      internal/core/webrtc_publish_index.html
  2. 6
      internal/core/webrtc_read_index.html

6
internal/core/webrtc_publish_index.html

@ -190,7 +190,7 @@ class Transmitter { @@ -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 { @@ -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 { @@ -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',

6
internal/core/webrtc_read_index.html

@ -104,7 +104,7 @@ class WHEPClient { @@ -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 { @@ -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 { @@ -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',

Loading…
Cancel
Save