浏览代码

rn: finally fix Android deep-linking

The URL cannot end in a /.
j8
Saúl Ibarra Corretgé 6 年前
父节点
当前提交
f3c83f6e6d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      react/features/deep-linking/functions.js

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

@@ -54,7 +54,7 @@ export function generateDeepLinkingURL() {
54 54
         const url = href.replace(regex, '').substr(2);
55 55
         const pkg = interfaceConfig.ANDROID_APP_PACKAGE || 'org.jitsi.meet';
56 56
 
57
-        return `intent://${url}/#Intent;scheme=${appScheme};package=${pkg};end`;
57
+        return `intent://${url}#Intent;scheme=${appScheme};package=${pkg};end`;
58 58
     }
59 59
 
60 60
     // iOS: Replace the protocol part with the app scheme.

正在加载...
取消
保存