Remove unnecessary key declaration

This commit is contained in:
Foereaper
2022-08-02 20:26:08 +02:00
parent e17c6268e4
commit 3cf489dc3c

View File

@ -75,7 +75,7 @@ local function ProcessVariables(reqId, ...)
local arg = {...} local arg = {...}
local msg = "" local msg = ""
for k, v in pairs(arg) do for _, v in pairs(arg) do
if(type(v) == "string") then if(type(v) == "string") then
-- Special case for empty string parsing -- Special case for empty string parsing
if(#v == 0) then if(#v == 0) then