Skip to content

Commit e24b151

Browse files
authored
Merge pull request #1606 from SimonBrandner/fix-log
Fixed wording in "Adding video track with id" log
2 parents 371ca00 + f7bfb1e commit e24b151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webrtc/call.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ export class MatrixCall extends EventEmitter {
879879
this.peerConn.addTrack(audioTrack, stream);
880880
}
881881
for (const videoTrack of (this.screenSharingStream || stream).getVideoTracks()) {
882-
logger.info("Adding audio track with id " + videoTrack.id);
882+
logger.info("Adding video track with id " + videoTrack.id);
883883
this.peerConn.addTrack(videoTrack, stream);
884884
}
885885

0 commit comments

Comments
 (0)