mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_http: Rename loop variable to avoid name clash [luacheck]
This commit is contained in:
parent
bf3c8c2b1a
commit
c27c3940c7
1 changed files with 2 additions and 2 deletions
|
@ -68,9 +68,9 @@ function moduleapi.http_url(module, app_name, default_path)
|
|||
local services = portmanager.get_active_services();
|
||||
local http_services = services:get("https") or services:get("http") or {};
|
||||
for interface, ports in pairs(http_services) do -- luacheck: ignore 213/interface
|
||||
for port, services in pairs(ports) do -- luacheck: ignore 512
|
||||
for port, service in pairs(ports) do -- luacheck: ignore 512
|
||||
local url = {
|
||||
scheme = (external_url.scheme or services[1].service.name);
|
||||
scheme = (external_url.scheme or service[1].service.name);
|
||||
host = (external_url.host or module:get_option_string("http_host", module.host));
|
||||
port = tonumber(external_url.port) or port or 80;
|
||||
path = normalize_path(external_url.path or "/")..
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue