openvidu-server: CallDetailRecord fix (new CDREventParticipant)

pull/370/head
pabloFuente 2019-10-08 09:38:23 +02:00
parent 97ff8426ab
commit de2153fe0f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
} }