From 976677de60f5657fe4a5eb1db1568d5f1f4c3a78 Mon Sep 17 00:00:00 2001 From: Tiago Lisboa Date: Tue, 9 May 2017 21:03:25 -0300 Subject: [PATCH] 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. --- .../src/vertoService/services/vertoService.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js index 1994a85196..05b2357bfe 100644 --- a/html5/verto/verto_communicator/src/vertoService/services/vertoService.js +++ b/html5/verto/verto_communicator/src/vertoService/services/vertoService.js @@ -263,7 +263,10 @@ vertoService.service('verto', ['$rootScope', '$cookieStore', '$location', 'stora id: 'screen', label: 'Screen' }]; - data.audioDevices = []; + data.audioDevices = [{ + id: 'none', + label: 'No Microphone' + }]; data.speakerDevices = []; if(!storage.data.selectedShare) {