Cancel member participant state timeout on leave

This commit is contained in:
Robert Long 2021-08-06 15:02:24 -07:00
parent 8e2688b3db
commit 9ee81dc8eb

View file

@ -276,6 +276,7 @@ export class ConferenceCallManager extends EventEmitter {
this.participants = [this.localParticipant];
this.localParticipant.stream = null;
this.localParticipant.call = null;
clearTimeout(this._memberParticipantStateTimeout);
this.emit("participants_changed");
}