Compare commits

...

1 Commits

Author SHA1 Message Date
hmuresan 83d5f8b67e fix(aot-video) Update self video in AOT on sharing 2021-12-09 13:51:13 +02:00
1 changed files with 5 additions and 0 deletions

View File

@ -565,6 +565,11 @@ export default class JitsiMeetExternalAPI extends EventEmitter {
// Since this is internal event we don't need to emit it to the consumer of the API.
return true;
case 'video-mute-status-changed':
if (this._onStageParticipant && this._myUserID === this._onStageParticipant) {
this.emit('largeVideoChanged');
}
break;
}
const eventName = events[name];