fixed a game crash on firefox on http
This commit is contained in:
parent
dd5a0c9933
commit
e2531343d1
@ -115,7 +115,9 @@ export class MediaManager {
|
|||||||
|
|
||||||
//get camera
|
//get camera
|
||||||
getCamera() {
|
getCamera() {
|
||||||
return this.getCameraPromise = navigator.mediaDevices.getUserMedia(this.constraintsMedia)
|
let promise = null;
|
||||||
|
try {
|
||||||
|
promise = navigator.mediaDevices.getUserMedia(this.constraintsMedia)
|
||||||
.then((stream: MediaStream) => {
|
.then((stream: MediaStream) => {
|
||||||
this.localStream = stream;
|
this.localStream = stream;
|
||||||
this.myCamVideo.srcObject = this.localStream;
|
this.myCamVideo.srcObject = this.localStream;
|
||||||
@ -132,6 +134,10 @@ export class MediaManager {
|
|||||||
this.localStream = null;
|
this.localStream = null;
|
||||||
throw err;
|
throw err;
|
||||||
});
|
});
|
||||||
|
} catch (e) {
|
||||||
|
promise = Promise.reject(false);
|
||||||
|
}
|
||||||
|
return this.getCameraPromise = promise;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user