[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.
This commit is contained in:
parent
6f15903019
commit
18a81d7ca0
|
@ -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…
Reference in New Issue