summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2016-04-11 13:42:58 -0400
committerCorey Hulen <corey@hulen.com>2016-04-11 10:42:58 -0700
commit2c9e184b8c9f567ef9aff883487b78dd8a77d0c6 (patch)
tree938015b45554ffe5c0428010bc4f0e68f3150e34 /webapp
parent0d85b998caebf7d9d88f8b687dbcac3ded0c28d4 (diff)
downloadchat-2c9e184b8c9f567ef9aff883487b78dd8a77d0c6.tar.gz
chat-2c9e184b8c9f567ef9aff883487b78dd8a77d0c6.tar.bz2
chat-2c9e184b8c9f567ef9aff883487b78dd8a77d0c6.zip
Remove extra tracking data from api_channels requests (#2679)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/utils/client.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/utils/client.jsx b/webapp/utils/client.jsx
index 854aa31dc..6c784c11c 100644
--- a/webapp/utils/client.jsx
+++ b/webapp/utils/client.jsx
@@ -770,7 +770,7 @@ export function createChannel(channel, success, error) {
}
});
- track('api', 'api_channels_create', channel.type, 'name', channel.name);
+ track('api', 'api_channels_create');
}
export function createDirectChannel(channel, userId, success, error) {
@@ -787,7 +787,7 @@ export function createDirectChannel(channel, userId, success, error) {
}
});
- track('api', 'api_channels_create_direct', channel.type, 'name', channel.name);
+ track('api', 'api_channels_create_direct');
}
export function updateChannel(channel, success, error) {