misc: make URL protocol matching regexes non-greedy

pull/3864/head jitsi-meet_3528
Saúl Ibarra Corretgé 6 years ago committed by Zoltan Bettenbuk
parent f3c83f6e6d
commit 7c911eca96
  1. 2
      react/features/base/util/uri.js
  2. 2
      react/features/deep-linking/functions.js

@ -71,7 +71,7 @@ function _fixRoom(room: ?string) {
* @returns {string}
*/
function _fixURIStringScheme(uri: string) {
const regex = new RegExp(`${URI_PROTOCOL_PATTERN}+`, 'gi');
const regex = new RegExp(`${URI_PROTOCOL_PATTERN}+`, 'i');
const match: Array<string> | null = regex.exec(uri);
if (match) {

@ -45,7 +45,7 @@ export function generateDeepLinkingURL() {
const appScheme = interfaceConfig.APP_SCHEME || 'org.jitsi.meet';
const { href } = window.location;
const regex = new RegExp(URI_PROTOCOL_PATTERN, 'gi');
const regex = new RegExp(URI_PROTOCOL_PATTERN, 'i');
// Android: use an intent link, custom schemes don't work in all browsers.
// https://developer.chrome.com/multidevice/android/intents

Loading…
Cancel
Save