From a0052878c31c76df5225d9c8d08d6352294fac7a Mon Sep 17 00:00:00 2001 From: Carsten Rosenberg Date: Wed, 24 Oct 2018 22:25:10 +0200 Subject: [PATCH] [FIX] Antivirus - virus names #2 --- src/plugins/lua/antivirus.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/lua/antivirus.lua b/src/plugins/lua/antivirus.lua index 1c2660b72..a00d2cd73 100644 --- a/src/plugins/lua/antivirus.lua +++ b/src/plugins/lua/antivirus.lua @@ -313,7 +313,7 @@ local function check_av_cache(task, digest, rule, fn) -- Cached if data ~= 'OK' then lua_util.debugm(N, task, 'got cached result for %s: %s', key, data) - data = rspamd_str_split(data, '\x7c') + data = rspamd_str_split(data, '\v') yield_result(task, rule, data) else lua_util.debugm(N, task, 'got cached result for %s: %s', key, data) @@ -359,7 +359,7 @@ local function save_av_cache(task, digest, rule, to_save) end if type(to_save) == 'table' then - to_save = table.concat(to_save, '\x30') + to_save = table.concat(to_save, '\v') end if redis_params then -- 2.39.5