diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-10 10:50:33 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-07-10 10:50:33 +0100 |
commit | d562ac860607af63b2d8836ae9f5f690fb3ffc97 (patch) | |
tree | edc29f2cb65631194a51969e6f5a252300ffec21 | |
parent | 0e8e209f9a8eeff4d1ba4e18d0c6e27da1389835 (diff) | |
download | rspamd-d562ac860607af63b2d8836ae9f5f690fb3ffc97.tar.gz rspamd-d562ac860607af63b2d8836ae9f5f690fb3ffc97.zip |
[Minor] Neural: Sigh, another fix for passthrough
-rw-r--r-- | src/plugins/lua/neural.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/lua/neural.lua b/src/plugins/lua/neural.lua index b88890c24..f23730ec3 100644 --- a/src/plugins/lua/neural.lua +++ b/src/plugins/lua/neural.lua @@ -1072,6 +1072,8 @@ local function ann_push_vector(task) if verdict == 'passthrough' then lua_util.debugm(N, task, 'ignore task as its verdict is %s(%s)', verdict, score) + + return end for _,rule in pairs(settings.rules) do |