commit 42704e4: [Minor] Oops, fix flag name

Vsevolod Stakhov vsevolod at highsecure.ru
Sun Aug 25 08:49:05 UTC 2019


Author: Vsevolod Stakhov
Date: 2019-08-25 09:43:47 +0100
URL: https://github.com/rspamd/rspamd/commit/42704e45f72359b88ca4d66dfc6dc45e2adc6fc3

[Minor] Oops, fix flag name

---
 lualib/lua_util.lua | 4 ++--
 1 file 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
 


More information about the Commits mailing list