From 8f1cb7ded20d70f7450890ab5c7456b83b02958a Mon Sep 17 00:00:00 2001 From: Tudor-Ovidiu Avram Date: Thu, 29 Oct 2020 14:20:46 +0200 Subject: [PATCH] fix(vpaas) fix invite url flicker for jaas users --- .../features/base/premeeting/components/web/CopyMeetingUrl.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/react/features/base/premeeting/components/web/CopyMeetingUrl.js b/react/features/base/premeeting/components/web/CopyMeetingUrl.js index f443230c6..fc636ac7c 100644 --- a/react/features/base/premeeting/components/web/CopyMeetingUrl.js +++ b/react/features/base/premeeting/components/web/CopyMeetingUrl.js @@ -216,9 +216,10 @@ class CopyMeetingUrl extends Component { */ function mapStateToProps(state) { const { enableAutomaticUrlCopy } = state['features/base/config']; + const { customizationReady } = state['features/dynamic-branding']; return { - url: getCurrentConferenceUrl(state), + url: customizationReady ? getCurrentConferenceUrl(state) : '', _enableAutomaticUrlCopy: enableAutomaticUrlCopy || false }; }