Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HTML5] change audio to default to SIP and fix import glitch #3183

Merged
merged 1 commit into from Jun 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion bigbluebutton-html5/config.js
Expand Up @@ -62,7 +62,7 @@ clientConfig.media.freeswitchProfilePassword = '1234';
clientConfig.media.vertoPort = '8082';

// specifies whether to use SIP.js for audio over mod_verto
clientConfig.media.useSIPAudio = false;
clientConfig.media.useSIPAudio = true;

// Configs for redis
const redisConfig = {
Expand Down
1 change: 1 addition & 0 deletions bigbluebutton-html5/imports/api/verto/index.js
Expand Up @@ -34,6 +34,7 @@ function joinVertoCall(options) {
};

let wasCallSuccessful = false;
let conferenceUsername = createVertoUserName();
let debuggerCallback = function (message) {
console.log('CALLBACK: ' + JSON.stringify(message));

Expand Down
@@ -1,5 +1,5 @@
import Deskshare from '/imports/api/deskshare';
import {conferenceUsername, joinVertoAudio, watchVertoVideo} from '/imports/api/verto';
import {createVertoUserName, joinVertoAudio, watchVertoVideo} from '/imports/api/verto';
import Auth from '/imports/ui/services/auth';
import {getVoiceBridge} from '/imports/api/phone';

Expand Down