浏览代码

Adds the displayName if available to the conference options on create.

master
damencho 8 年前
父节点
当前提交
654c5c44f4
共有 2 个文件被更改,包括 13 次插入0 次删除
  1. 6
    0
      conference.js
  2. 7
    0
      config.js

+ 6
- 0
conference.js 查看文件

1291
                     : 'colibri';
1291
                     : 'colibri';
1292
         }
1292
         }
1293
 
1293
 
1294
+        const nick = APP.settings.getDisplayName();
1295
+
1296
+        if (nick) {
1297
+            options.displayName = nick;
1298
+        }
1299
+
1294
         return options;
1300
         return options;
1295
     },
1301
     },
1296
 
1302
 

+ 7
- 0
config.js 查看文件

233
     // callStatsID: '',
233
     // callStatsID: '',
234
     // callStatsSecret: '',
234
     // callStatsSecret: '',
235
 
235
 
236
+    // enables callstatsUsername to be reported as statsId and used
237
+    // by callstats as repoted remote id
238
+    // enableStatsID: false
239
+
240
+    // enables sending participants display name to callstats
241
+    // enableDisplayNameInStats: false
242
+
236
 
243
 
237
     // Privacy
244
     // Privacy
238
     //
245
     //

正在加载...
取消
保存