From 43c8fc6847fd439eab6b63370b3e9ea426cf55e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 23 Mar 2017 19:20:57 +0100 Subject: [PATCH] [RN] Fix mirroring video views on platforms with native support --- react/features/base/media/components/native/Video.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/react/features/base/media/components/native/Video.js b/react/features/base/media/components/native/Video.js index a933c7aa9..ccd4da567 100644 --- a/react/features/base/media/components/native/Video.js +++ b/react/features/base/media/components/native/Video.js @@ -93,16 +93,16 @@ export class Video extends Component { const mirror = this.props.mirror; - // XXX RTCView doesn't currently support mirroring, even when - // providing a transform style property. As a workaround, wrap the - // RTCView inside another View and apply the transform style - // property to that View instead. + // XXX RTCView may not support support mirroring, even when + // providing a transform style property (e.g. iOS) . As a + // workaround, wrap the RTCView inside another View and apply the + // transform style property to that View instead. const mirrorWorkaround = mirror && !RTCVIEW_SUPPORTS_MIRROR; // eslint-disable-next-line no-extra-parens const video = (