mod_http: Simplify conversion of Set to Array

Avoids the _items semi-private value, that is used everywhere for some
reason.
This commit is contained in:
Kim Alvefur 2023-06-10 12:18:09 +02:00
parent 2d69c8c4ea
commit 57dd3340b0

View file

@ -115,7 +115,7 @@ function moduleapi.http_url(module, app_name, default_path, mode)
end
local function header_set_tostring(header_value)
return array(pairs(header_value._items)):concat(", ");
return array(header_value:items()):concat(", ");
end
local function apply_cors_headers(response, methods, headers, max_age, allow_credentials, allowed_origins, origin)