fix(vpaas) fix invite url flicker for jaas users

pull/8003/head
Tudor-Ovidiu Avram 5 years ago
parent b9ccc3ad8c
commit 8f1cb7ded2
  1. 3
      react/features/base/premeeting/components/web/CopyMeetingUrl.js

@ -216,9 +216,10 @@ class CopyMeetingUrl extends Component<Props, State> {
*/
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
};
}

Loading…
Cancel
Save