From: Vsevolod Stakhov Date: Sun, 25 Aug 2019 08:43:47 +0000 (+0100) Subject: [Minor] Oops, fix flag name X-Git-Tag: 2.0~343 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=42704e45f72359b88ca4d66dfc6dc45e2adc6fc3;p=rspamd.git [Minor] Oops, fix flag name --- 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