|
@@ -205,9 +205,17 @@ export function createConference() {
|
205
|
205
|
const conference
|
206
|
206
|
= connection.initJitsiConference(
|
207
|
207
|
|
208
|
|
- // XXX Lib-jitsi-meet does not accept uppercase letters.
|
209
|
|
- room.toLowerCase(),
|
210
|
|
- { openSctp: true });
|
|
208
|
+ // XXX Lib-jitsi-meet does not accept uppercase letters.
|
|
209
|
+ room.toLowerCase(),
|
|
210
|
+ {
|
|
211
|
+ openSctp: true
|
|
212
|
+
|
|
213
|
+ // FIXME I tested H.264 from iPhone 6S during a morning
|
|
214
|
+ // standup but, unfortunately, the other participants who
|
|
215
|
+ // happened to be running the Web app saw only black.
|
|
216
|
+ //
|
|
217
|
+ // preferH264: true
|
|
218
|
+ });
|
211
|
219
|
|
212
|
220
|
_addConferenceListeners(conference, dispatch);
|
213
|
221
|
|