Bläddra i källkod

fix(vpaas) fix invite url flicker for jaas users

master
Tudor-Ovidiu Avram 5 år sedan
förälder
incheckning
8f1cb7ded2
1 ändrade filer med 2 tillägg och 1 borttagningar
  1. 2
    1
      react/features/base/premeeting/components/web/CopyMeetingUrl.js

+ 2
- 1
react/features/base/premeeting/components/web/CopyMeetingUrl.js Visa fil

@@ -216,9 +216,10 @@ class CopyMeetingUrl extends Component<Props, State> {
216 216
  */
217 217
 function mapStateToProps(state) {
218 218
     const { enableAutomaticUrlCopy } = state['features/base/config'];
219
+    const { customizationReady } = state['features/dynamic-branding'];
219 220
 
220 221
     return {
221
-        url: getCurrentConferenceUrl(state),
222
+        url: customizationReady ? getCurrentConferenceUrl(state) : '',
222 223
         _enableAutomaticUrlCopy: enableAutomaticUrlCopy || false
223 224
     };
224 225
 }

Laddar…
Avbryt
Spara