mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-06 21:19:17 +00:00
FS-8941: [verto_communicator] Add No Microphone label to audio devices
If no microphone was detected it was impossible to open a call. So, add a No Microphone label, just like the No Camera, with id:none, wich allow to enter a call with microphone disabled.
This commit is contained in:
parent
5d4ac1cd3b
commit
976677de60
@ -263,7 +263,10 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora
|
|||||||
id: 'screen',
|
id: 'screen',
|
||||||
label: 'Screen'
|
label: 'Screen'
|
||||||
}];
|
}];
|
||||||
data.audioDevices = [];
|
data.audioDevices = [{
|
||||||
|
id: 'none',
|
||||||
|
label: 'No Microphone'
|
||||||
|
}];
|
||||||
data.speakerDevices = [];
|
data.speakerDevices = [];
|
||||||
|
|
||||||
if(!storage.data.selectedShare) {
|
if(!storage.data.selectedShare) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user