mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http: Silecence harmless warnings
This commit is contained in:
parent
135f900336
commit
bf3c8c2b1a
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ function moduleapi.http_url(module, app_name, default_path)
|
|||
end
|
||||
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
|
||||
for port, services in pairs(ports) do
|
||||
for interface, ports in pairs(http_services) do -- luacheck: ignore 213/interface
|
||||
for port, services in pairs(ports) do -- luacheck: ignore 512
|
||||
local url = {
|
||||
scheme = (external_url.scheme or services[1].service.name);
|
||||
host = (external_url.host or module:get_option_string("http_host", module.host));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue