|
@@ -702,13 +702,7 @@ var VideoLayout = {
|
702
|
702
|
onParticipantConnectionStatusChanged (id) {
|
703
|
703
|
// Show/hide warning on the large video
|
704
|
704
|
if (this.isCurrentlyOnLarge(id)) {
|
705
|
|
- // when pinning and we have lastN enabled, we have rapid connection
|
706
|
|
- // status changed between inactive, restoring and active and
|
707
|
|
- // if there was a large video update scheduled already it will
|
708
|
|
- // reflect the current status and no need to schedule new one
|
709
|
|
- // otherwise we end up scheduling updates for endpoints which are
|
710
|
|
- // were on large while checking, but a change was already scheduled
|
711
|
|
- if (largeVideo && !largeVideo.updateInProcess) {
|
|
705
|
+ if (largeVideo) {
|
712
|
706
|
// We have to trigger full large video update to transition from
|
713
|
707
|
// avatar to video on connectivity restored.
|
714
|
708
|
this.updateLargeVideo(id, true /* force update */);
|