瀏覽代碼

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
 /**

Loading…
取消
儲存