//for chrome
var getScreenDeviceIdWoExtension = function (constraints) {
return new Promise(function (resolve, reject) {
//WCS-1952. exact constraints are not supported.
//WCS-1986. added audio: true to constraints.
resolve({
video: true,
audio: true
});
});
};
Does WCS-1952 mean that Flashphoner ignores user constraints when using screen sharing?
var getScreenDeviceIdWoExtension = function (constraints) {
return new Promise(function (resolve, reject) {
//WCS-1952. exact constraints are not supported.
//WCS-1986. added audio: true to constraints.
resolve({
video: true,
audio: true
});
});
};
Does WCS-1952 mean that Flashphoner ignores user constraints when using screen sharing?