@flashphoner/sfusdk-examples 2.0.308 → 2.0.310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/client/main.js +2 -2
package/package.json
CHANGED
package/src/client/main.js
CHANGED
|
@@ -202,7 +202,7 @@ const publishPreconfiguredStreams = async function (room, pc, streams) {
|
|
|
202
202
|
localDisplay.add(s.stream.id, "local", s.stream, contentType);
|
|
203
203
|
});
|
|
204
204
|
//join room
|
|
205
|
-
await room.join(pc, null, config,
|
|
205
|
+
await room.join(pc, null, config, 10);
|
|
206
206
|
// Enable Delete button for each preconfigured stream #WCS-3689
|
|
207
207
|
streams.forEach(function (s) {
|
|
208
208
|
$('#' + s.stream.id + "-button").prop('disabled', false);
|
|
@@ -365,4 +365,4 @@ const cancel = function () {
|
|
|
365
365
|
cControls.muteInput();
|
|
366
366
|
// display the error message
|
|
367
367
|
displayError("Please refresh the page, fill the entrance modal and enter a room to publish or play streams");
|
|
368
|
-
}
|
|
368
|
+
}
|