Update server

This commit is contained in:
Sergiu Toma 2022-11-29 10:27:55 +02:00
parent 7634a18465
commit e22093d97e
2 changed files with 4 additions and 2 deletions

View File

@ -20524,6 +20524,7 @@ const getLocalStream = () => {
doIHaveAudio = true;
}
// 🟨 [PERMISSION] onchange denied
// If it is the first time client enter and give permission
permissionStatus.onchange = function() {
console.log('🟨 [PERMISSION] onchange', this.state);
@ -20541,7 +20542,7 @@ const getLocalStream = () => {
.catch(error => {
console.log(error.message)
})
} else if (this.state === 'denied') {
} else /*if (this.state === 'denied') */ {
doIHaveAudio = false;
console.log('Getting user permission');
navigator.mediaDevices.getUserMedia({

View File

@ -166,6 +166,7 @@ const getLocalStream = () => {
doIHaveAudio = true;
}
// 🟨 [PERMISSION] onchange denied
// If it is the first time client enter and give permission
permissionStatus.onchange = function() {
console.log('🟨 [PERMISSION] onchange', this.state);
@ -183,7 +184,7 @@ const getLocalStream = () => {
.catch(error => {
console.log(error.message)
})
} else if (this.state === 'denied') {
} else /*if (this.state === 'denied') */ {
doIHaveAudio = false;
console.log('Getting user permission');
navigator.mediaDevices.getUserMedia({