ソースを参照

ref: Changes how isVideoPlayable is computed.

This commit changes how the SmallVideo.isVideoPlayable method works.

1st we remove the check on the video stream muted field (materialized with the
!this.videoStream.isMuted() guard). This check is redundant as it is
already materialized in the !this.isVideoMuted check (the isVideoMuted
field is updated with the return value of the videoStream.isMuted()
method).

2nd we return false if we're in audio only mode, because it's
(obviously) undesirable to have a playable video when in audio only
mode.
j8
George Politis 5年前
コミット
2a7c6681ad
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      modules/UI/videolayout/SmallVideo.js

+ 1
- 1
modules/UI/videolayout/SmallVideo.js ファイルの表示

@@ -511,7 +511,7 @@ SmallVideo.prototype.isCurrentlyOnLargeVideo = function() {
511 511
  * or <tt>false</tt> otherwise.
512 512
  */
513 513
 SmallVideo.prototype.isVideoPlayable = function() {
514
-    return this.videoStream && !this.isVideoMuted && !this.videoStream.isMuted();
514
+    return this.videoStream && !this.isVideoMuted && !APP.conference.isAudioOnly();
515 515
 };
516 516
 
517 517
 /**

読み込み中…
キャンセル
保存