Przeglądaj źródła

auto commit

app
jfinn 3 lat temu
rodzic
commit
be9258df68

+ 3
- 2
react/features/base/media/components/AbstractVideoTrack.js Wyświetl plik

105
 
105
 
106
         // Actual zoom is currently only enabled if the stream is a desktop
106
         // Actual zoom is currently only enabled if the stream is a desktop
107
         // stream.
107
         // stream.
108
-        console.log("AVT",this,{stream})
109
         const zoomEnabled
108
         const zoomEnabled
110
             = this.props.zoomEnabled
109
             = this.props.zoomEnabled
111
                 && stream
110
                 && stream
112
                 && videoTrack
111
                 && videoTrack
113
                 && videoTrack.videoType === 'desktop';
112
                 && videoTrack.videoType === 'desktop';
114
 
113
 
115
-        return (
114
+        // return (
115
+        var ret = (
116
             <Video
116
             <Video
117
                 mirror = { videoTrack && videoTrack.mirror }
117
                 mirror = { videoTrack && videoTrack.mirror }
118
                 onPlaying = { this._onVideoPlaying }
118
                 onPlaying = { this._onVideoPlaying }
121
                 zOrder = { this.props.zOrder }
121
                 zOrder = { this.props.zOrder }
122
                 zoomEnabled = { zoomEnabled } />
122
                 zoomEnabled = { zoomEnabled } />
123
         );
123
         );
124
+        console.log("AVT",this,{stream,ret,videoTrack})
124
     }
125
     }
125
 
126
 
126
     _onVideoPlaying: () => void;
127
     _onVideoPlaying: () => void;

Ładowanie…
Anuluj
Zapisz