From 08cf68813c96624dd9ebe1c598de85ea07d8a76b Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Mon, 9 Sep 2013 21:24:00 -0400 Subject: [PATCH] VRFS-633 another bug fix --- app/assets/javascripts/configureTrack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/configureTrack.js b/app/assets/javascripts/configureTrack.js index 467f87c7e..4a1ee97d6 100644 --- a/app/assets/javascripts/configureTrack.js +++ b/app/assets/javascripts/configureTrack.js @@ -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(); }