]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Fix checks safety
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 19 Jul 2021 09:23:44 +0000 (10:23 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Mon, 19 Jul 2021 09:23:44 +0000 (10:23 +0100)
rules/html.lua

index 97a6b2372791f48025d902fc7af923dee1504824..58fabfd7aef4e180701e1f4511acbe182e306488 100644 (file)
@@ -214,10 +214,12 @@ local vis_check_id = rspamd_config:register_symbol{
               local tr = transp_len / (normal_len + transp_len)
               if tr > transp_rate then
                 transp_rate = tr
+                if not bl.color then bl.color = {0, 0, 0} end
+                if not bl.bgcolor then bl.bgcolor = {0, 0, 0} end
                 arg = string.format('%s color #%x%x%x bgcolor #%x%x%x',
                     tag:get_type(),
-                    bl.color[1] or 0, bl.color[2] or 0, bl.color[3] or 0,
-                    bl.bgcolor[1] or 0, bl.bgcolor[2] or 0, bl.bgcolor[3] or 0)
+                    bl.color[1], bl.color[2], bl.color[3],
+                    bl.bgcolor[1], bl.bgcolor[2], bl.bgcolor[3])
               end
             end
           end