|
@@ -9,7 +9,6 @@ setConfigFromURLParams(config, {}, {}, window.location);
|
9
|
9
|
const params = parseURLParams(window.location, false, 'hash');
|
10
|
10
|
const { isHuman = false } = params;
|
11
|
11
|
const {
|
12
|
|
- localAudio = config.startWithAudioMuted !== true,
|
13
|
12
|
localVideo = config.startWithVideoMuted !== true,
|
14
|
13
|
remoteVideo = isHuman,
|
15
|
14
|
remoteAudio = isHuman,
|
|
@@ -19,6 +18,10 @@ const {
|
19
|
18
|
autoCreateLocalAudio = config.testing.noAutoLocalAudio !== true
|
20
|
19
|
} = params;
|
21
|
20
|
|
|
21
|
+let {
|
|
22
|
+ localAudio = config.startWithAudioMuted !== true,
|
|
23
|
+} = params;
|
|
24
|
+
|
22
|
25
|
const { room: roomName } = parseURIString(window.location.toString());
|
23
|
26
|
|
24
|
27
|
let connection = null;
|