|
@@ -548,7 +548,8 @@ SmallVideo.prototype.isVideoPlayable = function() {
|
548
|
548
|
SmallVideo.prototype.selectDisplayMode = function() {
|
549
|
549
|
// Display name is always and only displayed when user is on the stage
|
550
|
550
|
if (this.isCurrentlyOnLargeVideo()) {
|
551
|
|
- return DISPLAY_BLACKNESS_WITH_NAME;
|
|
551
|
+ return this.isVideoPlayable()
|
|
552
|
+ ? DISPLAY_BLACKNESS_WITH_NAME : DISPLAY_AVATAR_WITH_NAME;
|
552
|
553
|
} else if (this.isVideoPlayable()
|
553
|
554
|
&& this.selectVideoElement().length
|
554
|
555
|
&& !APP.conference.isAudioOnly()) {
|