From a6cd2a702ff1dcc24105638c466f82f257d6011e Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Fri, 1 May 2015 17:22:25 +0100 Subject: [PATCH] Fix hfilter URL_ONELINE rule. --- conf/lua/hfilter.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/conf/lua/hfilter.lua b/conf/lua/hfilter.lua index 159b03a77..57361b3b8 100644 --- a/conf/lua/hfilter.lua +++ b/conf/lua/hfilter.lua @@ -235,9 +235,7 @@ local function hfilter(task) if total_url_len + 7 > total_parts_len then task:insert_result('HFILTER_URL_ONLY', 1.00) elseif text_parts_count == 1 and selected_text_part and selected_text_part:get_length() < 1024 then - -- We got a single text part with the total length < 1024 symbols. - local part_text = selected_text_part:get_content() - if part_text and part_text:get_lines_count() < 2 then + if selected_text_part:get_lines_count() < 2 then task:insert_result('HFILTER_URL_ONELINE', 1.00) end end -- 2.39.5