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