Skip to content
New issue

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

OPENMEETINGS-2245 Add some warning if mediaDevices is undefined #56

Merged
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,11 @@ var VideoSettings = (function() {
}
function _getDevConstraints(callback) {
const devCnts = {audio: false, video: false};
if (navigator.mediaDevices === undefined) {
OmUtil.error('Brower multimedia devices are blocked by security settings. Try https.');
sebawagner marked this conversation as resolved.
Show resolved Hide resolved
callback(devCnts);
return;
}
navigator.mediaDevices.enumerateDevices()
.then(function(devices) {
devices.forEach(function(device) {
Expand Down