mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
core.modulemanager: Save module metadata for potential later use
Makes it reachable from the shell if nothing else
This commit is contained in:
parent
69a9195243
commit
8648dd2191
1 changed files with 2 additions and 1 deletions
|
@ -219,7 +219,7 @@ local function do_load_module(host, module_name, state)
|
|||
local pluginenv = setmetatable({ module = api_instance }, { __index = _G });
|
||||
api_instance.environment = pluginenv;
|
||||
|
||||
local mod, err = loader:load_code(module_name, nil, pluginenv);
|
||||
local mod, err, meta = loader:load_code(module_name, nil, pluginenv);
|
||||
if not mod then
|
||||
log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil");
|
||||
api_instance:set_status("error", "Failed to load (see log)");
|
||||
|
@ -227,6 +227,7 @@ local function do_load_module(host, module_name, state)
|
|||
end
|
||||
|
||||
api_instance.path = err;
|
||||
api_instance.meta = meta;
|
||||
|
||||
local custom_plugins = prosody.paths.installer;
|
||||
if custom_plugins and err:sub(1, #custom_plugins+1) == custom_plugins.."/" then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue