From: Vsevolod Stakhov Date: Thu, 1 Dec 2016 12:30:20 +0000 (+0000) Subject: [Fix] Fix another issue with external deps in SA X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1214%2Fhead;p=thirdparty%2Frspamd.git [Fix] Fix another issue with external deps in SA --- diff --git a/src/plugins/lua/spamassassin.lua b/src/plugins/lua/spamassassin.lua index 64e1308092..2affaeedef 100644 --- a/src/plugins/lua/spamassassin.lua +++ b/src/plugins/lua/spamassassin.lua @@ -1512,9 +1512,9 @@ local function post_process() else local rspamd_symbol, replaced_symbol = replace_symbol(a) if replaced_symbol then - external_deps[a] = rspamd_symbol + external_deps[a] = {rspamd_symbol} else - external_deps[a] = 1 + external_deps[a] = {} end end end