Clean up audio level after previous speaker

This commit is contained in:
Maxim Voloshin 2016-10-13 16:43:21 +03:00
parent 58b4e0d59a
commit 4ae0d1b882
1 changed files with 5 additions and 0 deletions

View File

@ -178,6 +178,11 @@ export default class LargeVideoManager {
// show the avatar on large if needed // show the avatar on large if needed
container.showAvatar(showAvatar); container.showAvatar(showAvatar);
// clean up audio level after previous speaker
if (showAvatar) {
this.updateLargeVideoAudioLevel(0);
}
// Make sure no notification about remote failure is shown as // Make sure no notification about remote failure is shown as
// it's UI conflicts with the one for local connection interrupted. // it's UI conflicts with the one for local connection interrupted.
if (APP.conference.isConnectionInterrupted()) { if (APP.conference.isConnectionInterrupted()) {