aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_uptime.lua
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mod_uptime.lua')
-rw-r--r--plugins/mod_uptime.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_uptime.lua b/plugins/mod_uptime.lua
index 043f6514..9c2cb45d 100644
--- a/plugins/mod_uptime.lua
+++ b/plugins/mod_uptime.lua
@@ -6,6 +6,8 @@ local t_concat = table.concat;
local start_time = os.time();
+require "core.discomanager".set("uptime", "jabber:iq:last");
+
add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
function (origin, stanza)
if stanza.tags[1].name == "query" then
@@ -20,5 +22,3 @@ add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last",
end
end
end);
-
-