diff options
author | rm-minus-rf <rm.minus.rf@protonmail.com> | 2020-04-17 08:22:56 +0200 |
---|---|---|
committer | rm-minus-rf <rm.minus.rf@protonmail.com> | 2020-04-17 08:22:56 +0200 |
commit | e1e23ddef268163cec9e1d1fafbfda0b36917e77 (patch) | |
tree | 21739b9f1a0e1e9529a145fef945667013971860 | |
parent | 834279171c3ec8c8a355a9e438f07a06f5b16325 (diff) | |
download | rspamd-e1e23ddef268163cec9e1d1fafbfda0b36917e77.tar.gz rspamd-e1e23ddef268163cec9e1d1fafbfda0b36917e77.zip |
[Fix] add missing selector_cache declaration
-rw-r--r-- | src/plugins/lua/force_actions.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/lua/force_actions.lua b/src/plugins/lua/force_actions.lua index caa03da64..e86892f6a 100644 --- a/src/plugins/lua/force_actions.lua +++ b/src/plugins/lua/force_actions.lua @@ -23,6 +23,7 @@ end local E = {} local N = 'force_actions' +local selector_cache = {} local fun = require "fun" local lua_util = require "lua_util" |