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

Fixed log (audio -> video)

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-02-17 20:51:43 +01:00
parent 9f993f1f67
commit f7bfb1e49e

View File

@@ -873,7 +873,7 @@ export class MatrixCall extends EventEmitter {
this.peerConn.addTrack(audioTrack, stream); this.peerConn.addTrack(audioTrack, stream);
} }
for (const videoTrack of (this.screenSharingStream || stream).getVideoTracks()) { 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); this.peerConn.addTrack(videoTrack, stream);
} }