mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.prosodyctl.check: Fix use of LuaSocket URL parser
This commit is contained in:
parent
0448e82513
commit
cde551332e
1 changed files with 1 additions and 1 deletions
|
@ -625,7 +625,7 @@ local function check(arg)
|
||||||
local http_internal_host = http_host;
|
local http_internal_host = http_host;
|
||||||
local http_url = configmanager.get(host, "http_external_url");
|
local http_url = configmanager.get(host, "http_external_url");
|
||||||
if http_url then
|
if http_url then
|
||||||
local url_parse = require "socket.url";
|
local url_parse = require "socket.url".parse;
|
||||||
local external_url_parts = url_parse(http_url);
|
local external_url_parts = url_parse(http_url);
|
||||||
if external_url_parts then
|
if external_url_parts then
|
||||||
http_host = external_url_parts.host;
|
http_host = external_url_parts.host;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue