Don't try to load nonexisting cameras. Fix #103

This commit is contained in:
2020-10-21 21:08:29 +02:00
parent 6b61bf18cd
commit 415eb75e87
3 changed files with 7 additions and 1 deletions

View File

@@ -381,6 +381,9 @@ class BrowserMod {
`;
document.body.appendChild(this._canvas);
document.body.appendChild(this._video);
if(!navigator.mediaDevices) {
return;
}
navigator.mediaDevices.getUserMedia({video: true, audio: false}).then((stream) => {
this._video.srcObject = stream;
this._video.play();