diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-30 00:52:43 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-30 00:52:43 +0100 |
commit | fc11973174f89bf02612e16b11f11dc7959828ad (patch) | |
tree | 1f22418094fd6b7d418cba474b409005a9448ab2 | |
parent | 3b53149f03f87b853ad5d92c3f4baf20f167a623 (diff) | |
download | prosody-fc11973174f89bf02612e16b11f11dc7959828ad.tar.gz prosody-fc11973174f89bf02612e16b11f11dc7959828ad.zip |
modulemanager: Pass the module's final host (e.g. '*') to the module-loaded event
-rw-r--r-- | core/modulemanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 461bff5c..bc6e12ff 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -246,7 +246,7 @@ end function load(host, name) local mod, err = do_load_module(host, name); if mod then - (hosts[mod.module.host] or prosody).events.fire_event("module-loaded", { module = name, host = host }); + (hosts[mod.module.host] or prosody).events.fire_event("module-loaded", { module = name, host = mod.module.host }); end return mod, err; end |