mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.modulemanager: Fix global flag on per-host instances of shared modules (fix #1736)
This flag is something of a shortcut for `module.host == "*"` and should always be equal to that. Its absence on the proxy object made the property of the global module instance visible, causing problems such as with URL reporting in mod_http
This commit is contained in:
parent
0f493bd245
commit
a696800291
1 changed files with 1 additions and 0 deletions
|
@ -189,6 +189,7 @@ local function do_load_module(host, module_name, state)
|
|||
if module_has_method(mod, "add_host") then
|
||||
local _log = logger.init(host..":"..module_name);
|
||||
local host_module_api = setmetatable({
|
||||
global = false,
|
||||
host = host, event_handlers = new_multitable(), items = {};
|
||||
_log = _log, log = function (self, ...) return _log(...); end; --luacheck: ignore 212/self
|
||||
},{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue