send participant info/identity during track_published event (#846)

Signed-off-by: shishir gowda <shishir@livekit.io>
This commit is contained in:
shishirng
2022-07-21 17:34:52 -04:00
committed by GitHub
parent e624604453
commit a3e8304b56
@@ -159,8 +159,12 @@ func (t *telemetryServiceInternal) TrackPublished(ctx context.Context, participa
Timestamp: timestamppb.Now(),
RoomId: string(roomID),
ParticipantId: string(participantID),
Track: track,
Room: &livekit.Room{Name: string(roomName)},
Participant: &livekit.ParticipantInfo{
Sid: string(participantID),
Identity: string(identity),
},
Track: track,
Room: &livekit.Room{Name: string(roomName)},
})
}