From 978187c3ab1b50e82cd676f9beec95f0e1491b8a Mon Sep 17 00:00:00 2001 From: Yordan Neshkolov Date: Wed, 24 Jun 2020 17:09:18 +0300 Subject: [PATCH] NY-10782 [WEB]: Start recording is not working in full screen mode (SS or Video sharing) --- src/componets/AudioVideo/AudioVideo.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/componets/AudioVideo/AudioVideo.js b/src/componets/AudioVideo/AudioVideo.js index d553912c2..e28edabcb 100644 --- a/src/componets/AudioVideo/AudioVideo.js +++ b/src/componets/AudioVideo/AudioVideo.js @@ -745,6 +745,10 @@ class AudioVideo extends Component { } showRecordingDisclamer = () => { + if (this.state.isInFullscreen) { + this.disableFullScreenMode(); + } + const isRecSupported = isRecordingSupported(); if (isRecSupported) { this.setState({ showRecordingDisclamier : true }); -- GitLab