From f3c83f6e6dffb7c32d4864db421951496de1de29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Sat, 2 Feb 2019 11:09:33 +0100 Subject: [PATCH] rn: finally fix Android deep-linking The URL cannot end in a /. --- react/features/deep-linking/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/deep-linking/functions.js b/react/features/deep-linking/functions.js index 717e3306e..0fe678cd0 100644 --- a/react/features/deep-linking/functions.js +++ b/react/features/deep-linking/functions.js @@ -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.