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
webrtc/call: Unmute remote audio element when setting
This commit is contained in:
@@ -335,6 +335,7 @@ MatrixCall.prototype.setRemoteVideoElement = function(element) {
|
|||||||
MatrixCall.prototype.setRemoteAudioElement = function(element) {
|
MatrixCall.prototype.setRemoteAudioElement = function(element) {
|
||||||
this.remoteVideoElement.muted = true;
|
this.remoteVideoElement.muted = true;
|
||||||
this.remoteAudioElement = element;
|
this.remoteAudioElement = element;
|
||||||
|
this.remoteAudioElement.muted = false;
|
||||||
_tryPlayRemoteAudioStream(this);
|
_tryPlayRemoteAudioStream(this);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user