Revert priority change, http handler needs to be top

This commit is contained in:
Daniel Imms
2017-02-17 10:18:46 -08:00
parent 3f69da2455
commit a10ee8f58c
+1 -1
View File
@@ -123,7 +123,7 @@ export class Linkifier {
return;
}
const text = row.textContent;
for (let i = this._linkMatchers.length - 1; i >= 0; i--) {
for (let i = 0; i < this._linkMatchers.length; i--) {
const matcher = this._linkMatchers[i];
const uri = this._findLinkMatch(text, matcher.regex, matcher.matchIndex);
if (uri) {