Adds the displayName if available to the conference options on create.
This commit is contained in:
parent
5d313a8cd8
commit
654c5c44f4
|
@ -1291,6 +1291,12 @@ export default {
|
||||||
: 'colibri';
|
: 'colibri';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const nick = APP.settings.getDisplayName();
|
||||||
|
|
||||||
|
if (nick) {
|
||||||
|
options.displayName = nick;
|
||||||
|
}
|
||||||
|
|
||||||
return options;
|
return options;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -233,6 +233,13 @@ var config = {
|
||||||
// callStatsID: '',
|
// callStatsID: '',
|
||||||
// callStatsSecret: '',
|
// callStatsSecret: '',
|
||||||
|
|
||||||
|
// enables callstatsUsername to be reported as statsId and used
|
||||||
|
// by callstats as repoted remote id
|
||||||
|
// enableStatsID: false
|
||||||
|
|
||||||
|
// enables sending participants display name to callstats
|
||||||
|
// enableDisplayNameInStats: false
|
||||||
|
|
||||||
|
|
||||||
// Privacy
|
// Privacy
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue