feat: Do not include the callstats name in google analytics.

This commit is contained in:
Boris Grozev 2018-02-12 14:00:15 -06:00
parent 03fc711e81
commit a1ba7beff9
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@
// lengthy and is probably included from elsewhere.
for (const property in event.attributes) {
if (property !== 'permanent_user_agent'
&& property !== 'permanent_callstats_name'
&& event.attributes.hasOwnProperty(property)) {
// eslint-disable-next-line prefer-template
label += property + '=' + event.attributes[property] + '&';