You've already forked matrix-js-sdk
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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user