mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.module{manager,api}: Fix for 010b141e91ed (Thanks v1ct0r)
This commit is contained in:
parent
ea8046b81b
commit
b58d3248b7
2 changed files with 4 additions and 2 deletions
|
@ -370,7 +370,9 @@ function api:open_store(name, type)
|
|||
return require"core.storagemanager".open(self.host, name or self.name, type);
|
||||
end
|
||||
|
||||
return function (mm)
|
||||
function api.init(mm)
|
||||
modulemanager = mm;
|
||||
return api;
|
||||
end
|
||||
|
||||
return api;
|
||||
|
|
|
@ -37,7 +37,7 @@ local _G = _G;
|
|||
|
||||
module "modulemanager"
|
||||
|
||||
local api = _G.require "core.moduleapi"(_M); -- Module API container
|
||||
local api = _G.require "core.moduleapi".init(_M); -- Module API container
|
||||
|
||||
-- [host] = { [module] = module_env }
|
||||
local modulemap = { ["*"] = {} };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue