|
@@ -429,11 +429,12 @@ JitsiConferenceEventManager.prototype.setupRTCListeners = function() {
|
429
|
429
|
conference.lastDominantSpeaker = id;
|
430
|
430
|
conference.eventEmitter.emit(
|
431
|
431
|
JitsiConferenceEvents.DOMINANT_SPEAKER_CHANGED, id);
|
432
|
|
- }
|
433
|
|
- if (conference.statistics && conference.myUserId() === id) {
|
434
|
|
- // We are the new dominant speaker.
|
435
|
|
- conference.statistics.sendDominantSpeakerEvent(
|
436
|
|
- conference.room.roomjid);
|
|
432
|
+
|
|
433
|
+ if (conference.statistics && conference.myUserId() === id) {
|
|
434
|
+ // We are the new dominant speaker.
|
|
435
|
+ conference.statistics.sendDominantSpeakerEvent(
|
|
436
|
+ conference.room.roomjid);
|
|
437
|
+ }
|
437
|
438
|
}
|
438
|
439
|
});
|
439
|
440
|
|