소스 검색

rn: finally fix Android deep-linking

The URL cannot end in a /.
master
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.

Loading…
취소
저장