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-Tag: 1.4.2~20 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=25cc03459a73491b7c301d5ef9eed2b2f21cbc3c;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 e6d7639cf9..b4c504a3ee 100644 --- a/src/plugins/lua/spamassassin.lua +++ b/src/plugins/lua/spamassassin.lua @@ -1541,9 +1541,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