Browse Source

fix(1-on-1): remove torture test workaround, add new tests

efficient_tiling
Leonard Kim 8 years ago
parent
commit
42b51e3c5c
1 changed files with 2 additions and 5 deletions
  1. 2
    5
      modules/UI/videolayout/Filmstrip.js

+ 2
- 5
modules/UI/videolayout/Filmstrip.js View File

40
      * @returns {void}
40
      * @returns {void}
41
      */
41
      */
42
     setRemoteVideoVisibility(shouldShow) {
42
     setRemoteVideoVisibility(shouldShow) {
43
-        // FIXME Checking config.debug is a grand hack to avoid fixing the
44
-        // torture tests after the 1-on-1 UI was implemented, which hides remote
45
-        // videos on 1-on-1 calls. If this check is to be kept, at least create
46
-        // new torture tests to verify 1-on-1 mode.
47
-        if (config.debug || config.disable1On1Mode) {
43
+        // Allow disabling on 1-on-1 UI mode. Used by torture tests.
44
+        if (config.disable1On1Mode) {
48
             return;
45
             return;
49
         }
46
         }
50
 
47
 

Loading…
Cancel
Save