Revert "test player analytics without claimId label" #3558
1 changed files with 2 additions and 2 deletions
|
@ -130,10 +130,10 @@ const analytics: Analytics = {
|
|||
}
|
||||
},
|
||||
videoStartEvent: (claimId, duration) => {
|
||||
sendGaTimingEvent('Media', 'TimeToStart', Number((duration * 1000).toFixed(0)));
|
||||
sendGaTimingEvent('Media', 'TimeToStart', Number((duration * 1000).toFixed(0)), claimId);
|
||||
},
|
||||
videoBufferEvent: (claimId, currentTime) => {
|
||||
sendGaTimingEvent('Media', 'BufferTimestamp', currentTime * 1000);
|
||||
sendGaTimingEvent('Media', 'BufferTimestamp', currentTime * 1000, claimId);
|
||||
},
|
||||
tagFollowEvent: (tag, following, location) => {
|
||||
sendGaEvent(following ? 'Tag-Follow' : 'Tag-Unfollow', tag);
|
||||
|
|
Loading…
Reference in a new issue