From 4b6ac38058eba70bd1fb1b2824243f9238432c89 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Fri, 10 Jun 2016 12:43:29 -0500 Subject: [PATCH] Fixes a failure to show the dominant speaker indicator for the local participant. --- modules/UI/videolayout/VideoLayout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/UI/videolayout/VideoLayout.js b/modules/UI/videolayout/VideoLayout.js index 5f2a785b4..bb72899a8 100644 --- a/modules/UI/videolayout/VideoLayout.js +++ b/modules/UI/videolayout/VideoLayout.js @@ -577,9 +577,9 @@ var VideoLayout = { if(oldSpeakerRemoteVideo) { oldSpeakerRemoteVideo.updateDominantSpeakerIndicator(false); - localVideoThumbnail.updateDominantSpeakerIndicator(true); currentDominantSpeaker = null; } + localVideoThumbnail.updateDominantSpeakerIndicator(true); return; }