diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index fd07c4a44..7cf0f0cce 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -8172,7 +8172,7 @@ i = links.length; while (i--) { link = links[i]; - Linkify.embedProcess(Linkify.makeLink(link, this)); + Linkify.embedProcess(Linkify.makeLink(link), this); } }, embedProcess: function() {}, diff --git a/builds/crx/script.js b/builds/crx/script.js index 7f558d3ef..31d57c838 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -8223,7 +8223,7 @@ i = links.length; while (i--) { link = links[i]; - Linkify.embedProcess(Linkify.makeLink(link, this)); + Linkify.embedProcess(Linkify.makeLink(link), this); } }, embedProcess: function() {}, diff --git a/src/Linkification/Linkify.coffee b/src/Linkification/Linkify.coffee index f9a081b6f..c6a5754a0 100755 --- a/src/Linkification/Linkify.coffee +++ b/src/Linkification/Linkify.coffee @@ -73,7 +73,7 @@ Linkify = i = links.length while i-- link = links[i] - Linkify.embedProcess Linkify.makeLink link, @ + Linkify.embedProcess (Linkify.makeLink link), @ return embedProcess: -> return