From c064336e359a2d271a30a6af3aa73e8eeb83c035 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Mon, 16 Jan 2023 15:28:50 +0530 Subject: [PATCH] Create localPreviewMedia in GroupCall.setMedia --- src/matrix/calls/group/GroupCall.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/matrix/calls/group/GroupCall.ts b/src/matrix/calls/group/GroupCall.ts index 79f0e66c..f3f37a2b 100644 --- a/src/matrix/calls/group/GroupCall.ts +++ b/src/matrix/calls/group/GroupCall.ts @@ -200,6 +200,8 @@ export class GroupCall extends EventEmitter<{change: never}> { if ((this._state === GroupCallState.Joining || this._state === GroupCallState.Joined) && this.joinedData) { const oldMedia = this.joinedData.localMedia; this.joinedData.localMedia = localMedia; + this.localPreviewMedia?.dispose(); + this.joinedData.localPreviewMedia = localMedia.asPreview(); // reflect the fact we gained or lost local tracks in the local mute settings // and update the track info so PeerCall can use it to send up to date metadata, this.joinedData.localMuteSettings.updateTrackInfo(localMedia.userMedia);