rn: finally fix Android deep-linking

The URL cannot end in a /.
This commit is contained in:
Saúl Ibarra Corretgé 2019-02-02 11:09:33 +01:00 committed by Zoltan Bettenbuk
parent b9a14acd3c
commit f3c83f6e6d
1 changed files with 1 additions and 1 deletions

View File

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