|
@@ -274,15 +274,14 @@ function _shouldMirror(track) {
|
274
|
274
|
&& track.isLocal()
|
275
|
275
|
&& track.isVideoTrack()
|
276
|
276
|
|
277
|
|
- // XXX Type of the return value of
|
278
|
|
- // JitsiLocalTrack#getCameraFacingMode() happens to be named
|
|
277
|
+ // XXX The type of the return value of
|
|
278
|
+ // JitsiLocalTrack's getCameraFacingMode happens to be named
|
279
|
279
|
// CAMERA_FACING_MODE as well, it's defined by lib-jitsi-meet. Note
|
280
|
280
|
// though that the type of the value on the right side of the
|
281
|
281
|
// equality check is defined by jitsi-meet-react. The type
|
282
|
282
|
// definitions are surely compatible today but that may not be the
|
283
|
283
|
// case tomorrow.
|
284
|
284
|
&& track.getCameraFacingMode() === CAMERA_FACING_MODE.USER
|
285
|
|
- && !track.isScreenSharing()
|
286
|
285
|
);
|
287
|
286
|
}
|
288
|
287
|
|