Browse Source

fix: Fixes the user ID read from JWT. (#2366)

master
bgrozev 8 years ago
parent
commit
259004b8bf
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/analytics/functions.js

+ 1
- 1
react/features/analytics/functions.js View File

@@ -45,7 +45,7 @@ export function initAnalytics({ getState }: { getState: Function }) {
45 45
         envType: (deploymentInfo && deploymentInfo.envType) || 'dev',
46 46
         group,
47 47
         subproduct: deploymentInfo && deploymentInfo.environment,
48
-        user,
48
+        user: user && user.id,
49 49
         version: JitsiMeetJS.version
50 50
     };
51 51
 

Loading…
Cancel
Save