mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
PLT-6172: Fix telemtry parameter conflict. (#6212)
This commit is contained in:
committed by
Corey Hulen
parent
35ac2f35aa
commit
3b7dc2c477
@@ -32,7 +32,7 @@ class WebClientClass extends Client {
|
||||
}
|
||||
trackEvent(category, event, props) {
|
||||
if (global.window && global.window.analytics) {
|
||||
const properties = Object.assign({category, type: event, user_id: UserStore.getCurrentId()}, props);
|
||||
const properties = Object.assign({category, type: event, user_actual_id: UserStore.getCurrentId()}, props);
|
||||
const options = {
|
||||
context: {
|
||||
ip: '0.0.0.0'
|
||||
|
||||
Reference in New Issue
Block a user