diff options
author | Waqas Hussain <waqas20@gmail.com> | 2008-12-04 20:16:30 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2008-12-04 20:16:30 +0500 |
commit | 2d2414f199a416409e84a3ef9c38a84ea0ba825b (patch) | |
tree | dc905cc58daf6473950071c0886043fca13df861 /plugins/mod_uptime.lua | |
parent | fcf33a735bd454e7d755c36be93e011ff5754283 (diff) | |
download | prosody-2d2414f199a416409e84a3ef9c38a84ea0ba825b.tar.gz prosody-2d2414f199a416409e84a3ef9c38a84ea0ba825b.zip |
Change modules to use the new add_feature module API method.
This also fixes the bug causing disco features being added to every disco reply for every host.
Diffstat (limited to 'plugins/mod_uptime.lua')
-rw-r--r-- | plugins/mod_uptime.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_uptime.lua b/plugins/mod_uptime.lua index 2f04fc6f..51457551 100644 --- a/plugins/mod_uptime.lua +++ b/plugins/mod_uptime.lua @@ -26,7 +26,7 @@ local t_concat = table.concat; local start_time = os.time();
-require "core.discomanager".set("uptime", "jabber:iq:last");
+module:add_feature("jabber:iq:last");
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
function (origin, stanza)
|