Skip to content

Commit

Permalink
Merge pull request webrtc#1582 from fippo/trickle-audio
Browse files Browse the repository at this point in the history
trickle-ice: only acquire audio stream
  • Loading branch information
fippo authored Nov 21, 2022
2 parents 2f5722d + 4042fcf commit 48c52f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/peerconnection/trickle-ice/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ async function start() {

gatherButton.disabled = true;
if (getUserMediaInput.checked) {
stream = await navigator.mediaDevices.getUserMedia({audio: true, video: true});
stream = await navigator.mediaDevices.getUserMedia({audio: true});
}
getUserMediaInput.disabled = true;

Expand Down

0 comments on commit 48c52f2

Please sign in to comment.