QueryParams guard

This commit is contained in:
2025-06-23 22:50:49 -04:00
parent d2eded99a1
commit 1c08e5fd47

View File

@ -9,6 +9,7 @@ local METHODS = {
} }
local function QueryParams(Params) -- {Name = Value, ...} local function QueryParams(Params) -- {Name = Value, ...}
if not Params then return "" end
local QueryString = "?" local QueryString = "?"
for ParamName, ParamValue in next, Params do for ParamName, ParamValue in next, Params do