Microphone permission granted.
I get the error "DOMException" without any detailed description when I try to run this code await navigator.mediaDevices.getUserMedia({audio: true}).
Even in console< when I run this code navigator.mediaDevices.getUserMedia({audio:true})
.then(stream => video.srcObject = stream)
.catch(e => console.error(e));
I get an error "DOMException".
Why does this happen, what do I need to do?
Js, Vue.js, Chrome, MacOS Mojave.