From 3b872989f7063e40022883a4aa84d94d75c74995 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 19 Jan 2021 16:45:35 +0000 Subject: [PATCH] [Minor] Fix html tags use --- lualib/rspamadm/mime.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lualib/rspamadm/mime.lua b/lualib/rspamadm/mime.lua index 2870ca371..6294f373f 100644 --- a/lualib/rspamadm/mime.lua +++ b/lualib/rspamadm/mime.lua @@ -397,7 +397,7 @@ local function extract_handler(opts) end local content = tag:get_content() if content then - elt.content = content + elt.content = tostring(content) end table.insert(res, elt) end) -- 2.39.5