openvidu-components: Changed methods visibility

pull/707/head
csantosm 2022-02-11 13:19:41 +01:00
parent 2d293a689e
commit 46cc1db560
1 changed files with 2 additions and 2 deletions

View File

@ -252,7 +252,7 @@ export class ParticipantService {
this.updateRemoteParticipants();
}
}
protected getRemoteParticipantByConnectionId(connectionId: string): ParticipantAbstractModel {
getRemoteParticipantByConnectionId(connectionId: string): ParticipantAbstractModel {
return this.remoteParticipants.find((p) => p.hasConnectionId(connectionId));
}
@ -296,7 +296,7 @@ export class ParticipantService {
}
}
protected updateRemoteParticipants() {
updateRemoteParticipants() {
this._remoteParticipants.next(this.remoteParticipants);
}
protected newParticipant(steramModel?: StreamModel, participantId?: string) {