瀏覽代碼

Merge pull request #8003 from jitsi/tavram/invite-url

fix(vpaas) fix invite url flicker for jaas users
master
Avram Tudor 4 年之前
父節點
當前提交
48d0616ebf
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      react/features/base/premeeting/components/web/CopyMeetingUrl.js

+ 2
- 1
react/features/base/premeeting/components/web/CopyMeetingUrl.js 查看文件

@@ -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
 }

Loading…
取消
儲存