|
|
|
|
|
|
51
|
// https://developer.chrome.com/multidevice/android/intents
|
51
|
// https://developer.chrome.com/multidevice/android/intents
|
|
52
|
if (Platform.OS === 'android') {
|
52
|
if (Platform.OS === 'android') {
|
|
53
|
// https://meet.jit.si/foo -> meet.jit.si/foo
|
53
|
// https://meet.jit.si/foo -> meet.jit.si/foo
|
|
54
|
- const url = href.replace(regex, '').substr(3);
|
|
|
|
|
|
54
|
+ const url = href.replace(regex, '').substr(2);
|
|
55
|
const pkg = interfaceConfig.ANDROID_APP_PACKAGE || 'org.jitsi.meet';
|
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`;
|