Fix web links addon support in Edge

regex.flags isn't supported on Edge

Fixes #2417
This commit is contained in:
Daniel Imms
2019-09-11 14:39:11 -07:00
parent 3aa0599722
commit 7f9f757042
+1 -1
View File
@@ -211,7 +211,7 @@ export class Linkifier implements ILinkifier {
*/
private _doLinkifyRow(rowIndex: number, text: string, matcher: ILinkMatcher): void {
// clone regex to do a global search on text
const rex = new RegExp(matcher.regex.source, matcher.regex.flags + 'g');
const rex = new RegExp(matcher.regex.source, (matcher.regex.flags || '') + 'g');
let match;
let stringIndex = -1;
while ((match = rex.exec(text)) !== null) {