fix app name reporting

This commit is contained in:
2017-04-21 12:40:48 +02:00
parent f20f05a12d
commit 83372b5cf4
2 changed files with 3 additions and 5 deletions

View File

@ -5,13 +5,12 @@ export let event = (trackingIdArg: string, appNameArg: string, eventCategoryArg:
`&tid=${trackingIdArg}` + // the tracking ID
'&cid=555' +
'&aip=1' + // anonymize the IP
`&an=${appNameArg}` + // appName
'&t=event' +
`&ec=${eventCategoryArg}` + // event category
`&ea=${eventActionArg}` + // event action
`&el=${eventLabelArg}` + // event label
'&ev=300' +
`&an=${eventLabelArg}`
`&an=${appNameArg}`
send(payload)
}