Compare commits

..

No commits in common. "e9ff06054469b513825d504045b8039c4a2bc79c" and "8f96b8c98bac03b1dc519a1b98710280fca5e9f7" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -20509,7 +20509,7 @@ const streamSuccess = (stream) => {
localVideo.srcObject = stream
console.log('stream', stream);
const videoTrack = stream.getVideoTracks()[0]
const audioTrack = stream.getAudioTracks()[0]
const audioTrack = stream.getAudioTrack()[0]
videoParams = {
track: videoTrack,

View File

@ -151,7 +151,7 @@ const streamSuccess = (stream) => {
localVideo.srcObject = stream
console.log('stream', stream);
const videoTrack = stream.getVideoTracks()[0]
const audioTrack = stream.getAudioTracks()[0]
const audioTrack = stream.getAudioTrack()[0]
videoParams = {
track: videoTrack,