From a1ba7beff9670e17f4b2e2e44a0374dd30c93816 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Mon, 12 Feb 2018 14:00:15 -0600 Subject: [PATCH] feat: Do not include the callstats name in google analytics. --- analytics-ga.js | 1 + 1 file changed, 1 insertion(+) diff --git a/analytics-ga.js b/analytics-ga.js index 4b4186468..59c84d351 100644 --- a/analytics-ga.js +++ b/analytics-ga.js @@ -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] + '&';