From 012051c1db693b72bb9fea2b61a3590bd2accb54 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 2 Mar 2017 17:35:10 -0800 Subject: [PATCH] Fix matchIndex on http --- src/Linkifier.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Linkifier.ts b/src/Linkifier.ts index 1218bdb6..23c68063 100644 --- a/src/Linkifier.ts +++ b/src/Linkifier.ts @@ -54,7 +54,7 @@ export class Linkifier { this._rows = rows; this._rowTimeoutIds = []; this._linkMatchers = []; - this.registerLinkMatcher(strictUrlRegex, null, 1); + this.registerLinkMatcher(strictUrlRegex, null, { matchIndex: 1 }); } /**