aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lualib/lua_util.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lualib/lua_util.lua b/lualib/lua_util.lua
index ce494ed51..8f24b2871 100644
--- a/lualib/lua_util.lua
+++ b/lualib/lua_util.lua
@@ -706,7 +706,7 @@ exports.filter_specific_urls = function (urls, params)
if esld then
-- Special cases
- if (u:get_protocol() ~= 'mailto') and (not flags.url_displayed) then
+ if (u:get_protocol() ~= 'mailto') and (not flags.html_displayed) then
if flags.obscured then
priority = 3
else
@@ -716,7 +716,7 @@ exports.filter_specific_urls = function (urls, params)
priority = 2
end
end
- elseif u:is_html_displayed() then
+ elseif flags.html_displayed then
priority = 0
end