Browse Source

fix(jaas) do not deeplink jaas users on default 8x8 app scheme

j8
Tudor-Ovidiu Avram 3 years ago
parent
commit
12be14bd4b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      react/features/deep-linking/functions.js

+ 1
- 1
react/features/deep-linking/functions.js View File

@@ -58,7 +58,7 @@ export function getDeepLinkingPage(state) {
58 58
     if (launchInWeb
59 59
             || !room
60 60
             || state['features/base/config'].disableDeepLinking
61
-            || (isVpaasMeeting(state) && !appScheme)) {
61
+            || (isVpaasMeeting(state) && (!appScheme || appScheme === 'com.8x8.meet'))) {
62 62
         return Promise.resolve();
63 63
     }
64 64
 

Loading…
Cancel
Save