Update server
This commit is contained in:
parent
ac8c651a9d
commit
df0cb81a8e
@ -20512,6 +20512,33 @@ const streamSuccess = (stream) => {
|
|||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
|
|
||||||
|
try {
|
||||||
|
navigator.permissions.query(
|
||||||
|
{ name: 'microphone' }
|
||||||
|
).then(function(permissionStatus) {
|
||||||
|
|
||||||
|
console.log('🟨 [PERMISSION] onchange', permissionStatus.state); // granted, denied, prompt
|
||||||
|
|
||||||
|
// If he has entered before, the saved access is already saved
|
||||||
|
if (permissionStatus === 'grated') {
|
||||||
|
doIHaveAudio = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If it is the first time client enter and give permission
|
||||||
|
permissionStatus.onchange = function() {
|
||||||
|
console.log('🟨 [PERMISSION] onchange', this.state);
|
||||||
|
if (this.state === 'granted') {
|
||||||
|
doIHaveAudio = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
} catch (error) {
|
||||||
|
console.log('eeeeee', error);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
video: {
|
video: {
|
||||||
@ -20521,30 +20548,7 @@ const getLocalStream = () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((streamSuccess) => {
|
.then((streamSuccess) => {
|
||||||
try {
|
|
||||||
navigator.permissions.query(
|
|
||||||
{ name: 'microphone' }
|
|
||||||
).then(function(permissionStatus) {
|
|
||||||
|
|
||||||
console.log('🟨 [PERMISSION] onchange', permissionStatus.state); // granted, denied, prompt
|
|
||||||
|
|
||||||
// If he has entered before, the saved access is already saved
|
|
||||||
if (permissionStatus === 'grated') {
|
|
||||||
doIHaveAudio = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If it is the first time client enter and give permission
|
|
||||||
permissionStatus.onchange = function() {
|
|
||||||
console.log('🟨 [PERMISSION] onchange', this.state);
|
|
||||||
if (this.state === 'granted') {
|
|
||||||
doIHaveAudio = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
} catch (error) {
|
|
||||||
console.log('eeeeee', error);
|
|
||||||
}
|
|
||||||
return streamSuccess
|
return streamSuccess
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
|
@ -154,6 +154,33 @@ const streamSuccess = (stream) => {
|
|||||||
|
|
||||||
const getLocalStream = () => {
|
const getLocalStream = () => {
|
||||||
console.log('[getLocalStream]');
|
console.log('[getLocalStream]');
|
||||||
|
|
||||||
|
try {
|
||||||
|
navigator.permissions.query(
|
||||||
|
{ name: 'microphone' }
|
||||||
|
).then(function(permissionStatus) {
|
||||||
|
|
||||||
|
console.log('🟨 [PERMISSION] onchange', permissionStatus.state); // granted, denied, prompt
|
||||||
|
|
||||||
|
// If he has entered before, the saved access is already saved
|
||||||
|
if (permissionStatus === 'grated') {
|
||||||
|
doIHaveAudio = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If it is the first time client enter and give permission
|
||||||
|
permissionStatus.onchange = function() {
|
||||||
|
console.log('🟨 [PERMISSION] onchange', this.state);
|
||||||
|
if (this.state === 'granted') {
|
||||||
|
doIHaveAudio = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
} catch (error) {
|
||||||
|
console.log('eeeeee', error);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
navigator.mediaDevices.getUserMedia({
|
navigator.mediaDevices.getUserMedia({
|
||||||
audio: true,
|
audio: true,
|
||||||
video: {
|
video: {
|
||||||
@ -163,30 +190,7 @@ const getLocalStream = () => {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.then((streamSuccess) => {
|
.then((streamSuccess) => {
|
||||||
try {
|
|
||||||
navigator.permissions.query(
|
|
||||||
{ name: 'microphone' }
|
|
||||||
).then(function(permissionStatus) {
|
|
||||||
|
|
||||||
console.log('🟨 [PERMISSION] onchange', permissionStatus.state); // granted, denied, prompt
|
|
||||||
|
|
||||||
// If he has entered before, the saved access is already saved
|
|
||||||
if (permissionStatus === 'grated') {
|
|
||||||
doIHaveAudio = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If it is the first time client enter and give permission
|
|
||||||
permissionStatus.onchange = function() {
|
|
||||||
console.log('🟨 [PERMISSION] onchange', this.state);
|
|
||||||
if (this.state === 'granted') {
|
|
||||||
doIHaveAudio = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
} catch (error) {
|
|
||||||
console.log('eeeeee', error);
|
|
||||||
}
|
|
||||||
return streamSuccess
|
return streamSuccess
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
|
Loading…
Reference in New Issue
Block a user