We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get this issue when I start recording:
TypeError: Cannot read properties of undefined (reading 'getUserMedia') at index.js:15923:32
It is at this line of code:
15922 return new Promise(function (resolve, reject) { 15923 navigator.mediaDevices.getUserMedia({ audio: audio }).then(function (stream) { 15924 _this2.addMicrophoneListener(stream); 15925 resolve(stream); 15926 }).catch(function (err) { 15927 reject(err); 15928 }); 15929 });
How can I fix this issue?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I get this issue when I start recording:
TypeError: Cannot read properties of undefined (reading 'getUserMedia')
at index.js:15923:32
It is at this line of code:
15922 return new Promise(function (resolve, reject) {
15923 navigator.mediaDevices.getUserMedia({ audio: audio }).then(function (stream) {
15924 _this2.addMicrophoneListener(stream);
15925 resolve(stream);
15926 }).catch(function (err) {
15927 reject(err);
15928 });
15929 });
How can I fix this issue?
The text was updated successfully, but these errors were encountered: