浏览代码

feat(vpaas) disable deeplinking page

master
Tudor-Ovidiu Avram 5 年前
父节点
当前提交
7ff41217ac
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      react/features/deep-linking/functions.js

+ 2
- 1
react/features/deep-linking/functions.js 查看文件

3
 import { isMobileBrowser } from '../base/environment/utils';
3
 import { isMobileBrowser } from '../base/environment/utils';
4
 import { Platform } from '../base/react';
4
 import { Platform } from '../base/react';
5
 import { URI_PROTOCOL_PATTERN } from '../base/util';
5
 import { URI_PROTOCOL_PATTERN } from '../base/util';
6
+import { isVpaasMeeting } from '../billing-counter/functions';
6
 
7
 
7
 import {
8
 import {
8
     DeepLinkingDesktopPage,
9
     DeepLinkingDesktopPage,
53
     const { launchInWeb } = state['features/deep-linking'];
54
     const { launchInWeb } = state['features/deep-linking'];
54
 
55
 
55
     // Show only if we are about to join a conference.
56
     // Show only if we are about to join a conference.
56
-    if (launchInWeb || !room || state['features/base/config'].disableDeepLinking) {
57
+    if (launchInWeb || !room || state['features/base/config'].disableDeepLinking || isVpaasMeeting(state)) {
57
         return Promise.resolve();
58
         return Promise.resolve();
58
     }
59
     }
59
 
60
 

正在加载...
取消
保存