[RN] Fix passing config options when creating a conference

JitsiConnection.initJitsiConference doesn't automatically pass the global config
options, so grab the config from the Redux store and pass it.
pull/1476/head
Saúl Ibarra Corretgé 8 years ago committed by Lyubo Marinov
parent 6f15903019
commit 18a81d7ca0
  1. 4
      react/features/base/conference/actions.js

@ -253,13 +253,15 @@ export function createConference() {
dispatch(_conferenceWillJoin(room));
// TODO Take options from config.
const { config } = state['features/base/lib-jitsi-meet'];
const conference
= connection.initJitsiConference(
// XXX Lib-jitsi-meet does not accept uppercase letters.
room.toLowerCase(),
{
...config,
openSctp: true
// FIXME I tested H.264 from iPhone 6S during a morning

Loading…
Cancel
Save