|
@@ -3,6 +3,7 @@
|
3
|
3
|
import { isMobileBrowser } from '../base/environment/utils';
|
4
|
4
|
import { Platform } from '../base/react';
|
5
|
5
|
import { URI_PROTOCOL_PATTERN } from '../base/util';
|
|
6
|
+import { isVpaasMeeting } from '../billing-counter/functions';
|
6
|
7
|
|
7
|
8
|
import {
|
8
|
9
|
DeepLinkingDesktopPage,
|
|
@@ -53,7 +54,7 @@ export function getDeepLinkingPage(state) {
|
53
|
54
|
const { launchInWeb } = state['features/deep-linking'];
|
54
|
55
|
|
55
|
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
|
58
|
return Promise.resolve();
|
58
|
59
|
}
|
59
|
60
|
|