diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-01-22 19:27:06 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-01-22 19:27:06 +0000 |
commit | 7780d6690a22585ae15d11691d15712269d37f57 (patch) | |
tree | b01332fb73679a9c7330be93cc6a5b1d25159931 | |
parent | 89adfeefbfb954272bd53a172c07e3633186198e (diff) | |
download | prosody-7780d6690a22585ae15d11691d15712269d37f57.tar.gz prosody-7780d6690a22585ae15d11691d15712269d37f57.zip |
modulemanager: load(): Return and use the correct module object
-rw-r--r-- | core/modulemanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index a6d1ad35..a192e637 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -170,7 +170,7 @@ local function do_load_module(host, module_name) log("error", "Error initializing module '%s' on '%s': %s", module_name, host, err or "nil"); do_unload_module(api_instance.host, module_name); -- Ignore error, module may be partially-loaded end - return ok and mod, err; + return ok and pluginenv, err; end local function do_reload_module(host, name) @@ -219,7 +219,7 @@ end function load(host, name) local mod, err = do_load_module(host, name); if mod then - (hosts[mod.host] or prosody).events.fire_event("module-loaded", { module = module_name, host = host }); + (hosts[mod.module.host] or prosody).events.fire_event("module-loaded", { module = name, host = host }); end return mod, err; end |