Browse Source

[Minor] Fix invocation

tags/1.9.0
Vsevolod Stakhov 5 years ago
parent
commit
e303d2677c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lualib/lua_selectors.lua

+ 1
- 1
lualib/lua_selectors.lua View File

@@ -564,7 +564,7 @@ Empty string comes the first argument or 'true', non-empty string comes nil]],
['process'] = function(inp, _, args)
local rspamd_ip = require "rspamd_ip"
-- Non optimal: convert string to an IP address
local ip = rspamd_ip.fromstring(inp)
local ip = rspamd_ip.from_string(inp)

if not ip or not ip:is_valid() then
lua_util.debugm(M, "cannot convert %s to IP", inp)

Loading…
Cancel
Save