We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ce3b72c + c0a5299 commit d521f97Copy full SHA for d521f97
src/webrtc/groupCall.ts
@@ -505,6 +505,8 @@ export class GroupCall extends TypedEventEmitter<
505
setTracksEnabled(call.localUsermediaFeed.stream.getAudioTracks(), !muted);
506
}
507
508
+ this.emit(GroupCallEvent.LocalMuteStateChanged, muted, this.isLocalVideoMuted());
509
+
510
if (!sendUpdatesBefore) {
511
try {
512
await Promise.all(this.calls.map(c => c.sendMetadataUpdate()));
@@ -513,7 +515,6 @@ export class GroupCall extends TypedEventEmitter<
513
515
514
516
517
- this.emit(GroupCallEvent.LocalMuteStateChanged, muted, this.isLocalVideoMuted());
518
return true;
519
520
0 commit comments