diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-27 22:33:38 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-27 22:33:38 +0100 |
commit | f427f1c7d5f397979d4fedf49e1ccec67efd8ff6 (patch) | |
tree | 0fe182e62500a7495ab1813673641f0a8466df2d /core | |
parent | 3547b00138ab3a8721b4872023f9f42944298815 (diff) | |
download | prosody-f427f1c7d5f397979d4fedf49e1ccec67efd8ff6.tar.gz prosody-f427f1c7d5f397979d4fedf49e1ccec67efd8ff6.zip |
hostmanager: Remove unused host_config parameter from host-activated event
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 39af5732..4b9fa240 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -94,7 +94,7 @@ function activate(host, host_config) end log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host); - prosody_events.fire_event("host-activated", host, host_config); + prosody_events.fire_event("host-activated", host); return true; end |