aboutsummaryrefslogtreecommitdiffstats
path: root/core
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
commit59b9d9b0f3334d2e0b2ddc5de58d950a2b9fb6df (patch)
tree0fe182e62500a7495ab1813673641f0a8466df2d /core
parenteece0f9d1ca55e86f36db9aa492e7435f4cd3061 (diff)
downloadprosody-59b9d9b0f3334d2e0b2ddc5de58d950a2b9fb6df.tar.gz
prosody-59b9d9b0f3334d2e0b2ddc5de58d950a2b9fb6df.zip
hostmanager: Remove unused host_config parameter from host-activated event
Diffstat (limited to 'core')
-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