1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-26 17:03:12 +03:00

Merge pull request #1606 from SimonBrandner/fix-log

Fixed wording in "Adding video track with id" log
This commit is contained in:
Michael Telatynski
2021-02-18 18:00:28 +00:00
committed by GitHub

View File

@@ -879,7 +879,7 @@ export class MatrixCall extends EventEmitter {
this.peerConn.addTrack(audioTrack, stream);
}
for (const videoTrack of (this.screenSharingStream || stream).getVideoTracks()) {
logger.info("Adding audio track with id " + videoTrack.id);
logger.info("Adding video track with id " + videoTrack.id);
this.peerConn.addTrack(videoTrack, stream);
}