aboutsummaryrefslogtreecommitdiffstats
path: root/core/hostmanager.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-04-27 22:33:38 +0100
committerMatthew Wild <mwild1@gmail.com>2012-04-27 22:33:38 +0100
commitf427f1c7d5f397979d4fedf49e1ccec67efd8ff6 (patch)
tree0fe182e62500a7495ab1813673641f0a8466df2d /core/hostmanager.lua
parent3547b00138ab3a8721b4872023f9f42944298815 (diff)
downloadprosody-f427f1c7d5f397979d4fedf49e1ccec67efd8ff6.tar.gz
prosody-f427f1c7d5f397979d4fedf49e1ccec67efd8ff6.zip
hostmanager: Remove unused host_config parameter from host-activated event
Diffstat (limited to 'core/hostmanager.lua')
-rw-r--r--core/hostmanager.lua2
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