mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Revert priority change, http handler needs to be top
This commit is contained in:
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user