1
0
Mirror von https://github.com/rspamd/rspamd.git synchronisiert 2024-07-29 20:17:47 +02:00

[Fix] Redis key expansion: EVAL: deal with strings

Dieser Commit ist enthalten in:
Andrew Lewis 2018-02-27 15:18:48 +02:00
Ursprung 1e54b03ed6
Commit 6179837c52

Datei anzeigen

@ -225,7 +225,7 @@ local process_cmd = {
eval = function(args)
local idx_l = {}
local numkeys = args[2]
if numkeys >= 1 then
if numkeys and tonumber(numkeys) >= 1 then
for i = 3, numkeys + 2 do
table.insert(idx_l, i)
end