ソースを参照

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

master
bgrozev 8年前
コミット
259004b8bf
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      react/features/analytics/functions.js

+ 1
- 1
react/features/analytics/functions.js ファイルの表示

@@ -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
 

読み込み中…
キャンセル
保存