mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
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:
parent
2d69c8c4ea
commit
57dd3340b0
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue