QueryParams guard

This commit is contained in:
2025-06-23 22:50:49 -04:00
parent c71c9229e8
commit ba4c807644

View File

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