VRFS-633 another bug fix

This commit is contained in:
Brian Smith 2013-09-09 21:24:00 -04:00
parent 0da48eb447
commit 08cf68813c
1 changed files with 1 additions and 1 deletions

View File

@ -768,7 +768,7 @@
var $option1 = $('#voice-chat-type > option[value="1"]');
// remove Session Audio option from voice chat if none are available and not already assigned
if (unusedAudioOutputs.length === 0 && chatAssignedList.length === 0) {
if (inputUnassignedList.length === 0 && chatAssignedList.length === 0) {
logger.debug("Removing Option 1 from Voice Chat dropdown.");
$option1.remove();
}