|
@@ -422,19 +422,6 @@ class ConferenceConnector {
|
422
|
422
|
}
|
423
|
423
|
}
|
424
|
424
|
|
425
|
|
-/**
|
426
|
|
- * Sends statistics from APP.tokenData
|
427
|
|
- */
|
428
|
|
-function sendTokenDataStats() {
|
429
|
|
- let {server, group} = APP.tokenData;
|
430
|
|
- if(server) {
|
431
|
|
- APP.conference.logEvent("server." + server, 1);
|
432
|
|
- }
|
433
|
|
- if(group) {
|
434
|
|
- APP.conference.logEvent("group", group);
|
435
|
|
- }
|
436
|
|
-}
|
437
|
|
-
|
438
|
425
|
/**
|
439
|
426
|
* Disconnects the connection.
|
440
|
427
|
* @returns resolved Promise. We need this in order to make the Promise.all
|
|
@@ -515,7 +502,6 @@ export default {
|
515
|
502
|
return JitsiMeetJS.init(config)
|
516
|
503
|
.then(() => {
|
517
|
504
|
setAnalyticsPermanentProperties();
|
518
|
|
- sendTokenDataStats();
|
519
|
505
|
return createInitialLocalTracksAndConnect(options.roomName);
|
520
|
506
|
}).then(([tracks, con]) => {
|
521
|
507
|
console.log('initialized with %s local tracks', tracks.length);
|