fix: use current url to connect to server (#22)
instead of using absolute path `/webrtc` Signed-off-by: Stefan Dej <meteyou@gmail.com>
This commit is contained in:
parent
5ff64f2caf
commit
d143f3019e
@ -73,7 +73,7 @@
|
|||||||
const urlSearchParams = new URLSearchParams(window.location.search);
|
const urlSearchParams = new URLSearchParams(window.location.search);
|
||||||
const params = Object.fromEntries(urlSearchParams.entries());
|
const params = Object.fromEntries(urlSearchParams.entries());
|
||||||
|
|
||||||
fetch('/webrtc', {
|
fetch(window.location.href, {
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
type: 'request',
|
type: 'request',
|
||||||
res: params.res
|
res: params.res
|
||||||
@ -109,7 +109,7 @@
|
|||||||
}).then(function(answer) {
|
}).then(function(answer) {
|
||||||
var offer = pc.localDescription;
|
var offer = pc.localDescription;
|
||||||
|
|
||||||
return fetch('/webrtc', {
|
return fetch(window.location.href, {
|
||||||
body: JSON.stringify({
|
body: JSON.stringify({
|
||||||
type: offer.type,
|
type: offer.type,
|
||||||
id: pc.remote_pc_id,
|
id: pc.remote_pc_id,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user