diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-05-05 20:35:06 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-05-05 20:35:06 +0100 |
commit | d0c208f5f118d1ba37677369d8ba6477064671bc (patch) | |
tree | a4c0ef9fa58247f0226463cfaa1e3884c67f6a2c /prosodyctl | |
parent | 2d20f6c05c62f2bf61ad6e845141087f3ad84f91 (diff) | |
download | prosody-d0c208f5f118d1ba37677369d8ba6477064671bc.tar.gz prosody-d0c208f5f118d1ba37677369d8ba6477064671bc.zip |
prosodyctl: Use the global events objects for hosts (again) (thanks albert) (sorry albert)
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ local error_messages = setmetatable({ hosts = prosody.hosts; for hostname, config in pairs(config.getconfig()) do - hosts[hostname] = { events = require "util.events".new() }; + hosts[hostname] = { events = prosody.events }; end require "core.modulemanager" |