- enable mic when skipCheck is true. Right now it's false, so it doesn't init mic properly

This commit is contained in:
Richard Alam 2011-10-10 22:46:39 -04:00
parent eac09c4ffa
commit e495b1fe31

View File

@ -61,7 +61,7 @@
this.enabled = false;
if (phoneOptions.skipCheck) {
var joinEvent:BBBEvent = new BBBEvent("JOIN_VOICE_CONFERENCE_EVENT");
joinEvent.payload['useMicrophone'] = false;
joinEvent.payload['useMicrophone'] = true;
dispatcher.dispatchEvent(joinEvent);
} else {
dispatcher.dispatchEvent(new BBBEvent("SHOW_MIC_SETTINGS"));