[RN] Fix the parsing of the domain out of a URL

pull/1289/head jitsi-meet_1701
Lyubomir Marinov 8 years ago
parent ee651840bf
commit 3743602c67
  1. 2
      react/features/app/functions.native.js

@ -203,7 +203,7 @@ export function _parseURIString(uri) {
regex = new RegExp(`^${_URI_AUTHORITY_PATTERN}`, 'gi');
match = regex.exec(str);
if (match) {
let authority = match[1];
let authority = match[1].substring(/* // */ 2);
str = str.substring(regex.lastIndex);

Loading…
Cancel
Save