mirror of https://github.com/OpenVidu/openvidu.git
openvidu-server: CallDetailRecord fix (new CDREventParticipant)
parent
97ff8426ab
commit
de2153fe0f
|
@ -130,7 +130,7 @@ public class CallDetailRecord {
|
||||||
}
|
}
|
||||||
|
|
||||||
public void recordParticipantJoined(Participant participant, String sessionId) {
|
public void recordParticipantJoined(Participant participant, String sessionId) {
|
||||||
CDREventParticipant e = new CDREventParticipant(sessionId, participant);
|
CDREventParticipant e = new CDREventParticipant(participant);
|
||||||
this.participants.put(participant.getParticipantPublicId(), e);
|
this.participants.put(participant.getParticipantPublicId(), e);
|
||||||
this.log(e);
|
this.log(e);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue