diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-05-04 16:05:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-04 16:05:45 +0100 |
commit | c616d17dfe0eb99709b04af26978c7d0837030d4 (patch) | |
tree | 7bb0b902083c59a62916b9fa9cbedd4d058479d3 /src | |
parent | b152b39df64263ceda213eb61ed6e744e5092a03 (diff) | |
parent | a60be6c6a5df1cc34c1720ca6d6caf775e15e30f (diff) | |
download | rspamd-c616d17dfe0eb99709b04af26978c7d0837030d4.tar.gz rspamd-c616d17dfe0eb99709b04af26978c7d0837030d4.zip |
Merge pull request #2217 from michal-adamek/master
Fixed typo
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/lua/ratelimit.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/lua/ratelimit.lua b/src/plugins/lua/ratelimit.lua index 466ebafce..e060fe084 100644 --- a/src/plugins/lua/ratelimit.lua +++ b/src/plugins/lua/ratelimit.lua @@ -233,7 +233,7 @@ end local keywords = { ['ip'] = { - get_value = function(task) + ['get_value'] = function(task) local ip = task:get_ip() if ip and ip:is_valid() then return tostring(ip) end return nil |